From 7fe9230b5f0127808b1f996e6eb5fff9b7b9493d Mon Sep 17 00:00:00 2001 From: Ben Reaves Date: Sat, 23 May 2020 16:02:22 -0500 Subject: [PATCH] - Added proper Ctrl/Alt + Backspace behavior for Linux remap. Closes #187 --- xkeysnail-config/kinto.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/xkeysnail-config/kinto.py b/xkeysnail-config/kinto.py index 4a780ee..f38f091 100644 --- a/xkeysnail-config/kinto.py +++ b/xkeysnail-config/kinto.py @@ -103,7 +103,11 @@ define_keymap(None,{ K("RC-Shift-Up"): K("C-Shift-Home"), # Select all to Beginning of File K("RC-Down"): K("C-End"), # End of File K("RC-Shift-Down"): K("C-Shift-End"), # Select all to End of File - K("M-Backspace"): K("Delete"), # Delete + # K("M-Backspace"): K("Delete"), # Chromebook - Delete + K("Super-Backspace"): K("C-Backspace"), # Default not-chromebook - Delete Left Word of Cursor + K("Super-Delete"): K("C-Delete"), # Default not-chromebook - Delete Right Word of Cursor + K("Alt-Backspace"): K("C-Backspace"), # Default not-chromebook - Delete Left Word of Cursor + K("Alt-Delete"): K("C-Delete"), # Default not-chromebook - Delete Right Word of Cursor # K(""): pass_through_key, # cancel # K(""): K(""), # })