Skip to content

Instantly share code, notes, and snippets.

@haru01
Last active April 26, 2017 13:57
Show Gist options
  • Save haru01/9d885eacae730132d7ee96af7e0bba28 to your computer and use it in GitHub Desktop.
Save haru01/9d885eacae730132d7ee96af7e0bba28 to your computer and use it in GitHub Desktop.
vcodeの ソースコード読みようにちょっと調整
[
{
"key": "cmd+down",
"command": "editor.action.goToDeclaration",
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"
},
{
"key": "cmd+up",
"command": "workbench.action.navigateBack"
},
{
"key": "cmd+right",
"command": "cursorWordEndRight",
"when": "editorTextFocus"
},
{
"key": "shift+cmd+right",
"command": "cursorWordEndRightSelect",
"when": "editorTextFocus"
},
{
"key": "cmd+left",
"command": "cursorWordStartLeft",
"when": "editorTextFocus"
},
{
"key": "shift+cmd+left",
"command": "cursorWordStartLeftSelect",
"when": "editorTextFocus"
}
]
@haru01
Copy link
Author

haru01 commented Apr 26, 2017

ソースコードを トラックパッドと コマンドと 矢印中心に読めるように調整してた。
command + クリック。command+alt+クリックと合わせれば、だいぶ肩の力を抜いて読める。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment