ayato_sasakura

README

(() => {
// +
// Forked from: Scrapbox https://bit.ly/3pnfP6K
const textArea = document.getElementById('text-input');
const inputEvent = {
event: document.createEvent('Event'),
dispatch: function(string) {
textArea.value = string;
textArea.dispatchEvent(this.event);
}
};
inputEvent.event.initEvent('input', true, true);
const onKeyDown = function(e){
if (e.key == "u" && e.ctrlKey) {
inputEvent.dispatch("[comment] ayato_sasakura: ");
}
}
document.addEventListener('keydown', onKeyDown)
})()