Skip to content

Instantly share code, notes, and snippets.

@mugi-uno
Created December 25, 2018 07:46
Show Gist options
  • Save mugi-uno/d24233b3ad4ab82acd612ba6e5be8346 to your computer and use it in GitHub Desktop.
Save mugi-uno/d24233b3ad4ab82acd612ba6e5be8346 to your computer and use it in GitHub Desktop.
VSCode
// 既定値を上書きするには、このファイル内にキー バインドを挿入します
[
{
"key": "ctrl+shift+a",
"command": "cursorHomeSelect",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+e",
"command": "cursorEndSelect",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+left",
"command": "cursorWordStartLeftSelect",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+right",
"command": "cursorWordEndRightSelect",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+t",
"command": "workbench.action.tasks.test",
"when": "editorTextFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment