From af417230556cd55f2530a10a566f10d494e105dd Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Mon, 2 Jun 2025 14:25:14 -0400 Subject: [PATCH] AutoYADM commit: 2025-06-02 14:25:14 --- .config/qutebrowser/config.py | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/.config/qutebrowser/config.py b/.config/qutebrowser/config.py index 71a1390c..d29cdc92 100644 --- a/.config/qutebrowser/config.py +++ b/.config/qutebrowser/config.py @@ -55,24 +55,23 @@ config.bind( mode="normal", ) -# colemak keybindings -config.bind("m", "scroll left", mode="normal") -config.bind("n", "scroll down", mode="normal") -config.bind("e", "scroll up", mode="normal") -config.bind("i", "scroll right", mode="normal") -config.bind("M", "back", mode="normal") -config.bind("N", "tab-next", mode="normal") -config.bind("E", "tab-prev", mode="normal") -config.bind("", "tab-next", mode="normal") -config.bind("", "tab-prev", mode="normal") -config.bind("I", "forward", mode="normal") -config.bind("K", "bookmark-add", mode="normal") -config.bind("k", "quickmark-save", mode="normal") -config.bind("J", "search-prev", mode="normal") -config.bind("j", "search-next", mode="normal") -config.bind("", "hint links spawn --detach mpv {hint-url}") sets = { "normal": [ + ["m", "scroll left"], + ["n", "scroll down"], + ["e", "scroll up"], + ["i", "scroll right"], + ["M", "back"], + ["N", "tab-next"], + ["E", "tab-prev"], + ["", "tab-next"], + ["", "tab-prev"], + ["I", "forward"], + ["K", "bookmark-add"], + ["k", "quickmark-save"], + ["J", "search-prev"], + ["j", "search-next"], + ["", "hint links spawn --detach mpv {hint-url}"], ["gm", "tab-focus 1"], ["gi", "tab-focus -1"], ["gN", "tab-move +"],