Skip to content

Instantly share code, notes, and snippets.

@ysakasin
Created May 17, 2018 00:34
Show Gist options
  • Select an option

  • Save ysakasin/2ed1230d0afc4704026da9415bc3b3e0 to your computer and use it in GitHub Desktop.

Select an option

Save ysakasin/2ed1230d0afc4704026da9415bc3b3e0 to your computer and use it in GitHub Desktop.
VSCode keybindings
// 既定値を上書きするには、このファイル内にキー バインドを挿入します
[
{
"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