Created
July 20, 2018 09:40
-
-
Save tado/5bb37fb19c9b2a0fb9a876163589ff78 to your computer and use it in GitHub Desktop.
VS Code key setting
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": "ctrl+i", | |
| "command": "editor.action.formatDocument", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "ctrl+j", | |
| "command": "-editor.action.insertLineAfter", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "ctrl+j", | |
| "command": "-editor.action.joinLines", | |
| "when": "editorTextFocus && !editorReadonly" | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment