Created
May 17, 2018 00:34
-
-
Save ysakasin/2ed1230d0afc4704026da9415bc3b3e0 to your computer and use it in GitHub Desktop.
VSCode keybindings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 既定値を上書きするには、このファイル内にキー バインドを挿入します | |
| [ | |
| { | |
| "key": "cmd+t", | |
| "command": "workbench.action.terminal.toggleTerminal" | |
| }, | |
| { | |
| "key": "ctrl+shift+[BracketLeft]", | |
| "command": "-workbench.action.terminal.toggleTerminal" | |
| }, | |
| { | |
| "key": "shift+cmd+down", | |
| "command": "editor.action.moveLinesDownAction", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "ctrl+cmd+down", | |
| "command": "-editor.action.moveLinesDownAction", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "shift+cmd+up", | |
| "command": "editor.action.moveLinesUpAction", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "ctrl+cmd+up", | |
| "command": "-editor.action.moveLinesUpAction", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "cmd+b", | |
| "command": "cmake.build" | |
| }, | |
| { | |
| "key": "f7", | |
| "command": "-cmake.build" | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment