- Improved VS Code wordwise to work without any VS Code keybinding modifications required.

This commit is contained in:
Ben Reaves
2020-05-01 22:45:33 -05:00
parent 31d7c736b0
commit b5f533a83b
2 changed files with 4 additions and 17 deletions

View File

@@ -118,12 +118,12 @@ 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
# Shift select word has a bug that prevents selection
# use ./xkeysnail-config/vscode_keybindings.json
# K("M-Shift-Left"): K("C-Shift-Left"), # Select Left of Word
# K("M-Shift-Right"): K("C-Shift-Right"), # Select 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
# VS Code Shortcuts
K("C-g"): pass_through_key, # cancel Go to Line...

View File

@@ -1,13 +0,0 @@
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "shift+alt+left",
"command": "cursorWordStartLeftSelect",
"when": "textInputFocus"
},
{
"key": "shift+alt+right",
"command": "cursorWordEndRightSelect",
"when": "textInputFocus"
}
]