mirror of
https://github.com/vale981/tridactyl
synced 2025-03-06 01:51:40 -05:00
Make editor work in input mode
This commit is contained in:
parent
dca9039883
commit
5d936a7d44
1 changed files with 2 additions and 1 deletions
|
@ -14,6 +14,7 @@ export function parser(keys: MsgSafeKeyboardEvent[]) {
|
||||||
} else if (key === "Tab") {
|
} else if (key === "Tab") {
|
||||||
if (keys[0].shiftKey) return { keys: [], exstr: "focusinput -N" }
|
if (keys[0].shiftKey) return { keys: [], exstr: "focusinput -N" }
|
||||||
else return { keys: [], exstr: "focusinput -n" }
|
else return { keys: [], exstr: "focusinput -n" }
|
||||||
}
|
} else if (key === "e" && keys[0].ctrlKey)
|
||||||
|
return { keys: [], exstr: "editor" }
|
||||||
return { keys: [], exstr: "" }
|
return { keys: [], exstr: "" }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue