1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
| [ { "key": "alt+i", "command": "cursorUp", "when": "editorTextFocus" }, { "key": "alt+,", "command": "cursorDown", "when": "editorTextFocus" }, { "key": "alt+h", "command": "cursorLeft", "when": "editorTextFocus" }, { "key": "alt+l", "command": "cursorRight", "when": "editorTextFocus" }, { "key": "alt+0", "command": "cursorHome", "when": "editorTextFocus" }, { "key": "alt+4", "command": "cursorEnd", "when": "editorTextFocus" }, { "key": "shift+alt+i", "command": "cursorUpSelect", "when": "editorTextFocus" }, { "key": "shift+alt+,", "command": "cursorDownSelect", "when": "editorTextFocus" }, { "key": "shift+alt+h", "command": "cursorLeftSelect", "when": "editorTextFocus" }, { "key": "shift+alt+l", "command": "cursorRightSelect", "when": "editorTextFocus" }, { "key": "shift+alt+0", "command": "cursorHomeSelect", "when": "editorTextFocus" }, { "key": "shift+alt+4", "command": "cursorEndSelect", "when": "editorTextFocus" }, { "key": "ctrl+shift+alt+h", "command": "cursorWordStartLeftSelect", "when": "editorTextFocus" }, { "key": "ctrl+shift+alt+l", "command": "cursorWordEndRightSelect", "when": "editorTextFocus" }, { "key": "alt+w", "command": "editor.action.smartSelect.grow", "when": "editorTextFocus" }, { "key": "alt+shift+w", "command": "editor.action.smartSelect.shrink", "when": "editorTextFocus" }, { "key": "alt+c", "command": "editor.action.clipboardCopyAction", "when": "editorTextFocus" }, { "key": "alt+v", "command": "editor.action.clipboardPasteAction", "when": "editorTextFocus && !editorReadonly" }, { "key": "alt+s", "command": "workbench.action.files.save" }, { "key": "alt+'", "command": "deleteRight", "when": "editorTextFocus && !editorReadonly" }, { "key": "alt+j", "command": "workbench.action.previousEditor" }, { "key": "alt+k", "command": "workbench.action.nextEditor" } ]
|