mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-02 12:00:10 +08:00
added static keymap mode
This commit is contained in:
parent
5591583f38
commit
04f6ef7849
2 changed files with 15 additions and 0 deletions
|
@ -651,6 +651,13 @@ let commandsKeymapMode = {
|
|||
changeKeymapMode("off");
|
||||
},
|
||||
},
|
||||
{
|
||||
id: "setKeymapModeStatic",
|
||||
display: "static",
|
||||
exec: () => {
|
||||
changeKeymapMode("static");
|
||||
},
|
||||
},
|
||||
{
|
||||
id: "setKeymapModeNext",
|
||||
display: "next",
|
||||
|
|
|
@ -2318,6 +2318,14 @@
|
|||
>
|
||||
off
|
||||
</div>
|
||||
<div
|
||||
class="button"
|
||||
keymapMode="static"
|
||||
tabindex="0"
|
||||
onclick="this.blur();"
|
||||
>
|
||||
static
|
||||
</div>
|
||||
<div
|
||||
class="button"
|
||||
keymapMode="react"
|
||||
|
|
Loading…
Reference in a new issue