mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 17:41:40 -05:00
Improve symmetry
This commit is contained in:
parent
27a543e21c
commit
49bcd06592
1 changed files with 9 additions and 9 deletions
|
@ -72,6 +72,15 @@ function modeSpecificSuppression(ke: KeyboardEvent) {
|
|||
case "normal":
|
||||
genericResponse(ke, normparser)
|
||||
break
|
||||
case "input":
|
||||
genericResponse(ke, inputparser)
|
||||
break
|
||||
case "insert":
|
||||
genericResponse(ke, insertparser)
|
||||
break
|
||||
case "ignore":
|
||||
genericResponse(ke, ignoreparser)
|
||||
break
|
||||
// Hintmode can't clean up after itself yet, so it needs to block more FF shortcuts.
|
||||
case "hint":
|
||||
case "find":
|
||||
|
@ -86,15 +95,6 @@ function modeSpecificSuppression(ke: KeyboardEvent) {
|
|||
ke.stopImmediatePropagation()
|
||||
}
|
||||
break
|
||||
case "input":
|
||||
genericResponse(ke, inputparser)
|
||||
break
|
||||
case "ignore":
|
||||
genericResponse(ke, ignoreparser)
|
||||
break
|
||||
case "insert":
|
||||
genericResponse(ke, insertparser)
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue