- Corrected VS Code wordwise further

This commit is contained in:
Ben Reaves
2020-05-02 13:25:05 -05:00
parent da711e2421
commit 49d9cee349

View File

@@ -118,12 +118,11 @@ define_keymap(lambda wm_class: wm_class not in ("Code"),{
# Keybindings for VS Code
define_keymap(re.compile("Code"),{
# Wordwise remaining - for VS Code
# Keeping Alt is a hack, but works
K("M-Left"): K("C-M-Left"), # Left of Word
K("M-Right"): K("C-M-Right"), # Right of Word
# Alt-F19 hack fixes Alt menu activation
K("M-Shift-Left"): [K("M-F19"),K("C-Shift-Left")], # Select Left of Word
K("M-Shift-Right"): [K("M-F19"),K("C-Shift-Right")], # Select Right of Word
K("M-Left"): [K("M-F19"),K("C-Left")], # Left of Word
K("M-Right"): [K("M-F19"),K("C-Right")], # Right of Word
K("M-Shift-Left"): [K("M-F19"),K("C-Shift-Left")], # Select Left of Word
K("M-Shift-Right"): [K("M-F19"),K("C-Shift-Right")], # Select Right of Word
# VS Code Shortcuts
K("C-g"): pass_through_key, # cancel Go to Line...