Brain Hackers 名言・珍言録
Brain hackers コミュニティで生まれた、名言・珍言録を勝手に保管しています。発言の著作権は、各権利者に帰属します。[* 2021-12-31 【Discord -> "General"】 年の瀬にハックする人たち][* 記録者とコメント]記録者
(() => {
// コメント + ユーザー名を挿入
// 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)
})()