commit 00b92a60e56d3867c0c1580f86ac2f8c493ae342
parent 78a8e0f3163fac62835d07670746b88e6dcfd61f
Author: William Casarin <jb55@jb55.com>
Date: Wed, 18 Nov 2020 12:43:51 -0800
qutebrowser: just do full page scroll
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dotfiles/.config/qutebrowser/config.py b/dotfiles/.config/qutebrowser/config.py
@@ -52,8 +52,8 @@ c.bindings.key_mappings = {'<Ctrl+6>': '<Ctrl+^>', '<Ctrl+Enter>': '<Ctrl+Return
# Bindings for normal mode
config.unbind('r')
config.bind(')', 'zoom 150')
-config.bind('d', 'scroll-page 0 0.9')
-config.bind('u', 'scroll-page 0 -0.9')
+config.bind('d', 'scroll-page 0 1')
+config.bind('u', 'scroll-page 0 -1')
#config.bind('<Ctrl-d>', 'scroll-page 0 1')
#config.bind('<Ctrl-u>', 'scroll-page 0 -1')
#config.bind('d', 'repeat 10 scroll down')