From 7f465409370287711ace61c8cb6b99e696193c9f Mon Sep 17 00:00:00 2001 From: dogeystamp Date: Sun, 22 May 2022 10:35:31 -0400 Subject: [PATCH] qutebrowser: Add bind to scroll to anchor --- src/.config/qutebrowser/config.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/.config/qutebrowser/config.py b/src/.config/qutebrowser/config.py index 77faf65..3577524 100644 --- a/src/.config/qutebrowser/config.py +++ b/src/.config/qutebrowser/config.py @@ -67,3 +67,6 @@ c.content.headers.do_not_track = None; # Block certain trackers c.content.canvas_reading = False c.content.webgl = False + +# Bind '#' key to scroll to anchor (sections in wiki pages, for example) +config.bind("#", "set-cmd-text -s :scroll-to-anchor ")