import { redo, textInput } from "https://raw.githubusercontent.com/takker99/scrapbox-userscript-std/0.14.9/browser/dom/mod.ts"; textInput()!.addEventListener("keydown", (e) => { if (!(e.key === "y" && e.ctrlKey && !e.shiftKey && !e.altKey && !e.metaKey)) return; redo(); });