diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-07-25 17:15:19 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-07-25 17:15:19 +0200 |
| commit | bc95e3c59bb869bb18bee41a362df44cbba5dd75 (patch) | |
| tree | 900073cb4909fc0c36057136addda068e2cd8016 | |
| parent | 4e27b81da071650e6853f72bac48cc87628c111b (diff) | |
| download | dotfiles-bc95e3c59bb869bb18bee41a362df44cbba5dd75.tar.gz dotfiles-bc95e3c59bb869bb18bee41a362df44cbba5dd75.tar.bz2 dotfiles-bc95e3c59bb869bb18bee41a362df44cbba5dd75.zip | |
Updated qutebrowser, remapping gJ and gK for consistancy with J and K bindings
| -rw-r--r-- | config/qutebrowser/config.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/qutebrowser/config.py b/config/qutebrowser/config.py index f287524..db7c2da 100644 --- a/config/qutebrowser/config.py +++ b/config/qutebrowser/config.py @@ -79,6 +79,9 @@ config.bind('<Ctrl-K>', 'completion-item-focus prev', 'command') config.bind('J', 'tab-prev', 'normal') config.bind('K', 'tab-next', 'normal') +config.bind('gJ', 'tab-move -', 'normal') +config.bind('gK', 'tab-move +', 'normal') + config.bind('<F12>', 'devtools', 'normal') config.bind('j', 'scroll-page 0 0.05', 'normal') |
