mirror of
https://github.com/tridactyl/tridactyl.git
synced 2026-09-10 07:16:33 -04:00
fix: cancel the ending key event in gobble mode too
wihtout this, `gobble <Space> fillcmdline` will send the space key to the web page (and trigger the scroll event)
This commit is contained in:
parent
858f2ee15d
commit
0c69ad2f22
|
|
@ -45,7 +45,7 @@ export function parser(keys: MinimalKey[]) {
|
|||
modeState.args,
|
||||
].join(" ")
|
||||
reset()
|
||||
return { keys: [], exstr }
|
||||
return { keys: [], exstr, isMatch: true }
|
||||
}
|
||||
|
||||
const key = keys[0].key
|
||||
|
|
|
|||
Loading…
Reference in a new issue