1
0
Fork 0
mirror of https://github.com/kou029w/quot.git synced 2025-01-31 06:18:01 +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;
return /^[ \t]*/.exec(previousLine)?.[0]?.length ?? null;
}),
keymap.of([indentWithTab, ...emacsStyleKeymap]),
keymap.of([
indentWithTab,
...emacsStyleKeymap.filter(({ key }) => key !== "Ctrl-v"),
]),
minimalSetup,
quotLanguage,
quotHighlighting,