From 633e05e58d6777b935137f20b914a4367eb171bc Mon Sep 17 00:00:00 2001 From: Jeremy Kaplan Date: Sat, 3 Jul 2021 18:02:49 -0700 Subject: [PATCH] qutebrowser: Use Shift+Escape for passthrough --- qutebrowser/config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qutebrowser/config.py b/qutebrowser/config.py index dfa9944..703f7c4 100644 --- a/qutebrowser/config.py +++ b/qutebrowser/config.py @@ -1361,7 +1361,8 @@ c.url.start_pages = ["about:blank"] # config.bind('', 'open -t') # config.bind('', 'tab-focus last') # config.bind('', 'scroll-page 0 -0.5') -# config.bind('', 'enter-mode passthrough') +config.bind("", "mode-enter passthrough") +config.unbind("") # config.bind('', 'tab-close') # config.bind('', 'navigate decrement') # config.bind('', 'tab-focus last')