Last active
April 26, 2017 13:57
-
-
Save haru01/9d885eacae730132d7ee96af7e0bba28 to your computer and use it in GitHub Desktop.
vcodeの ソースコード読みようにちょっと調整
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+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" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ソースコードを トラックパッドと コマンドと 矢印中心に読めるように調整してた。
command + クリック。command+alt+クリックと合わせれば、だいぶ肩の力を抜いて読める。