From 22c5bfb245d2c41a585d2a15bc5983f8d885325d Mon Sep 17 00:00:00 2001 From: RedBearAK <64876997+RedBearAK@users.noreply.github.com> Date: Mon, 26 Jun 2023 02:04:32 -0800 Subject: [PATCH] QuickFix shortcut for VSCode(s) Override for Cmd+Dot is confirmed to work for "QuickFix" in VSCode on Big Sur. --- linux/kinto.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/linux/kinto.py b/linux/kinto.py index a88253d..a4a80a3 100755 --- a/linux/kinto.py +++ b/linux/kinto.py @@ -645,6 +645,8 @@ define_keymap(lambda wm_class: wm_class.casefold() not in mscodes,{ # Keybindings for VS Code define_keymap(re.compile(codeStr, re.IGNORECASE),{ K("Super-Space"): K("LC-Space"), # Basic code completion + # Override the global Cmd+Dot (Escape/cancel) shortcut + K("RC-Dot"): K("RC-Dot"), # QuickFix # Wordwise remaining - for VS Code # Alt-F19 hack fixes Alt menu activation K("Alt-Left"): [K("Alt-F19"),K("C-Left")], # Left of Word