mirror of
https://github.com/rbreaves/kinto.git
synced 2025-08-09 12:27:42 +02:00
- Improved VS Code wordwise to work without any VS Code keybinding modifications required.
This commit is contained in:
@@ -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...
|
||||
|
@@ -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"
|
||||
}
|
||||
]
|
Reference in New Issue
Block a user