mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-14 05:25:48 +01:00
Add missing semicolons.
--HG-- extra : rebase_source : 9b307f142d55c3cd89ea6010ea15f1d26b11846f
This commit is contained in:
@@ -830,7 +830,7 @@ const Events = Module("events", {
|
||||
stop = true;
|
||||
else if (modes.main == modes.PASS_THROUGH)
|
||||
// let flow continue to handle these keys to cancel escape-all-keys mode
|
||||
stop = !isEscape(key) && key != "<C-v>"
|
||||
stop = !isEscape(key) && key != "<C-v>";
|
||||
// handle Escape-one-key mode (Ctrl-v)
|
||||
else if (modes.main == modes.QUOTE) {
|
||||
stop = !shouldPass() && (modes.getStack(1).main !== modes.PASS_THROUGH || isEscape(key));
|
||||
|
||||
Reference in New Issue
Block a user