added static keymap mode

This commit is contained in:
Jack 2020-11-06 19:20:50 +00:00
parent 5591583f38
commit 04f6ef7849
2 changed files with 15 additions and 0 deletions

View file

@ -651,6 +651,13 @@ let commandsKeymapMode = {
changeKeymapMode("off");
},
},
{
id: "setKeymapModeStatic",
display: "static",
exec: () => {
changeKeymapMode("static");
},
},
{
id: "setKeymapModeNext",
display: "next",

View file

@ -2318,6 +2318,14 @@
>
off
</div>
<div
class="button"
keymapMode="static"
tabindex="0"
onclick="this.blur();"
>
static
</div>
<div
class="button"
keymapMode="react"