VSCodium Keymap
0
keybindings.json
28 lines 725 B view raw
1// Place your key bindings in this file to override the defaults 2[ 3 { 4 "key": "ctrl+w", 5 "command": "-editor.action.smartSelect.grow", 6 "when": "editorTextFocus" 7 }, 8 { 9 "key": "shift+alt+up", 10 "command": "editor.action.insertCursorAbove", 11 "when": "editorTextFocus" 12 }, 13 { 14 "key": "ctrl+alt+up", 15 "command": "-editor.action.insertCursorAbove", 16 "when": "editorTextFocus" 17 }, 18 { 19 "key": "shift+alt+down", 20 "command": "editor.action.insertCursorBelow", 21 "when": "editorTextFocus" 22 }, 23 { 24 "key": "ctrl+alt+down", 25 "command": "-editor.action.insertCursorBelow", 26 "when": "editorTextFocus" 27 } 28]