馃敡 Where my dotfiles lives in harmony and peace, most of the time
at f57f771721dc1cf321dc65e5dc5d52ebb3c931b3 49 lines 1.1 kB view raw
1[ 2 { 3 "key": "ctrl+[Backslash]", 4 "command": "editor.action.commentLine", 5 "when": "editorTextFocus && !editorReadonly" 6 }, 7 { 8 "key": "ctrl+shift+d", 9 "command": "editor.action.copyLinesDownAction", 10 "when": "editorTextFocus && !editorReadonly" 11 }, 12 { 13 "key": "ctrl+shift+up", 14 "command": "editor.action.moveLinesUpAction" 15 }, 16 { 17 "key": "ctrl+shift+down", 18 "command": "editor.action.moveLinesDownAction" 19 }, 20 { 21 "key": "ctrl+shift+-", 22 "command": "workbench.action.terminal.new", 23 "when": "terminalProcessSupported || terminalWebExtensionContributedProfile" 24 }, 25 { 26 "key": "shift+alt+r", 27 "command": "remote-containers.reopenInContainer" 28 }, 29 { 30 "key": "shift+enter", 31 "command": "workbench.action.terminal.sendSequence", 32 "args": { 33 "text": "\\\r\n" 34 }, 35 "when": "terminalFocus" 36 }, 37 { 38 "key": "ctrl+enter", 39 "command": "inlineChat.start", 40 "when": "editorTextFocus && !editorReadonly" 41 }, 42 { 43 "key": "ctrl+alt+shift+p", 44 "command": "workbench.action.terminal.sendSequence", 45 "args": { 46 "text": "pi -p \"commit and push\"\u000D" 47 } 48 } 49]