From 20569a2a5ec6cb33b47d4c702cf6dbef896d04c8 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Wed, 27 Mar 2024 03:40:55 +0000 Subject: [PATCH] feat(xkeysnail): add cmd+g and cmd+shift+g keybindings --- config/xkeysnail/config.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/xkeysnail/config.py b/config/xkeysnail/config.py index 4adc96a..e8aa425 100644 --- a/config/xkeysnail/config.py +++ b/config/xkeysnail/config.py @@ -100,6 +100,8 @@ define_keymap(lambda wm_class: wm_class not in ("Emacs", "URxvt", "Gnome-termina # Cancel K("C-g"): [K("esc"), set_mark(False)], + K("Super-g"): K("C-g"), + K("Super-Shift-g"): K("C-Shift-g"), # Escape K("C-q"): escape_next_key,