1
0
Fork 0

fix(qutebrowser): use correct command for leaving mode

Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
Lucas Sta Maria 2023-09-05 19:48:23 -04:00
parent 2b53f66b43
commit a11e3dc205
No known key found for this signature in database
GPG key ID: F07FB16A826E3B47

View file

@ -73,15 +73,15 @@ c.bindings.commands["command"] = {
"<Control-p>": "completion-item-focus prev", "<Control-p>": "completion-item-focus prev",
"<Control-n>": "completion-item-focus next", "<Control-n>": "completion-item-focus next",
"<Control-g>": "leave-mode", "<Control-g>": "mode-leave",
} }
c.bindings.commands["hint"] = { c.bindings.commands["hint"] = {
"<Control-g>": "leave-mode", "<Control-g>": "mode-leave",
} }
c.bindings.commands["caret"] = { c.bindings.commands["caret"] = {
"<Control-g>": "leave-mode", "<Control-g>": "mode-leave",
} }
c.content.blocking.method = "both" c.content.blocking.method = "both"