1
0
Fork 0
mirror of https://github.com/kou029w/quot.git synced 2025-01-31 14:28:06 +00:00

disabled Ctrl-v scroll

This commit is contained in:
Nebel 2022-09-19 14:31:35 +09:00
parent c4568aebd7
commit ba0206a4d2

View file

@ -42,7 +42,10 @@ export default (props: {
if (previousLine.trim() === "") return null; if (previousLine.trim() === "") return null;
return /^[ \t]*/.exec(previousLine)?.[0]?.length ?? null; return /^[ \t]*/.exec(previousLine)?.[0]?.length ?? null;
}), }),
keymap.of([indentWithTab, ...emacsStyleKeymap]), keymap.of([
indentWithTab,
...emacsStyleKeymap.filter(({ key }) => key !== "Ctrl-v"),
]),
minimalSetup, minimalSetup,
quotLanguage, quotLanguage,
quotHighlighting, quotHighlighting,