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:
parent
c4568aebd7
commit
ba0206a4d2
1 changed files with 4 additions and 1 deletions
|
@ -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,
|
||||||
|
|
Loading…
Add table
Reference in a new issue