Last active
June 25, 2016 06:56
-
-
Save shinriyo/261f0463a8b2e3879c3f90cd038ba26c to your computer and use it in GitHub Desktop.
MonoDevelopに慣れた人のVisual Studio Codeのkeybinding.jsonを晒すぜ
This file contains 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
// Place your key bindings in this file to overwrite the defaults | |
[{ | |
"key": "shift+alt+l", | |
"command": "editor.action.format" | |
},{ | |
"key": "shift+cmd+r", | |
"command": "editor.action.referenceSearch.trigger", | |
"when": "editorTextFocus" | |
},{ | |
"key": "cmd+d", | |
"command": "editor.action.goToDeclaration", | |
"when": "editorTextFocus" | |
} | |
,{ | |
"key": "cmd+r", | |
"command": "editor.action.rename", | |
"when": "editorTextFocus" | |
}] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment