From 79322bbe6617efcd533e48aeb722465c1cc95dad Mon Sep 17 00:00:00 2001 From: lelgenio Date: Thu, 19 Nov 2020 19:04:57 -0300 Subject: [PATCH] add devtools bindings --- dotfiles/qutebrowser.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/dotfiles/qutebrowser.py b/dotfiles/qutebrowser.py index 18e773f..4914316 100644 --- a/dotfiles/qutebrowser.py +++ b/dotfiles/qutebrowser.py @@ -319,6 +319,19 @@ config.bind(key.up, "move-to-prev-line", mode="caret") config.bind(key.down, "move-to-next-line", mode="caret") config.bind(key.right, "move-to-next-char", mode="caret") +# devtools +config.unbind("wIh") +config.unbind("wIj") +config.unbind("wIk") +config.unbind("wIl") + +config.bind("wIf", "devtools-focus") +config.bind("wIw", "devtools window") +config.bind("wI" + key.left, "devtools left") +config.bind("wI" + key.down, "devtools bottom") +config.bind("wI" + key.up, "devtools top") +config.bind("wI" + key.right, "devtools right") + # }}} # vim: fdm=marker