- Added VS Code wordwise fix for xkeysnail

This commit is contained in:
Ben Reaves
2020-04-24 20:04:35 -05:00
parent a66c82d84c
commit 696fb6ad7f
3 changed files with 40 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "alt+left",
"command": "-workbench.action.terminal.focusPreviousPane",
"when": "terminalFocus"
},
{
"key": "alt+right",
"command": "-workbench.action.terminal.focusNextPane",
"when": "terminalFocus"
},
{
"key": "alt+right",
"command": "cursorWordRight"
},
{
"key": "alt+left",
"command": "cursorWordLeft"
}
]