citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

commit ae2d0909d34393497d13aca46823be7023b9222a
parent 20cb081d1ef7cadfa648f945c37aeb0f80bc33bd
Author: William Casarin <jb55@jb55.com>
Date:   Thu, 12 Nov 2020 12:25:38 -0800

qutebrowser: scroll 0.9 instead of 1

Diffstat:
Mdotfiles/.config/qutebrowser/config.py | 4++--
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 1') -config.bind('u', 'scroll-page 0 -1') +config.bind('d', 'scroll-page 0 0.9') +config.bind('u', 'scroll-page 0 -0.9') #config.bind('<Ctrl-d>', 'scroll-page 0 1') #config.bind('<Ctrl-u>', 'scroll-page 0 -1') #config.bind('d', 'repeat 10 scroll down')