Created
December 15, 2018 14:56
-
-
Save jossef/f97ee0244546f0065a137a7a8acb8239 to your computer and use it in GitHub Desktop.
intellij-vs to vscode keybindings
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+alt+f", | |
| "command": "editor.action.formatDocument", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "ctrl+shift+i", | |
| "command": "-editor.action.formatDocument", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "alt+left", | |
| "command": "workbench.action.navigateBack" | |
| }, | |
| { | |
| "key": "alt+right", | |
| "command": "workbench.action.navigateForward" | |
| }, | |
| { | |
| "command": "editor.action.moveLinesUpAction", | |
| "key": "alt+shift+up", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "alt+shift+down", | |
| "command": "editor.action.moveLinesDownAction", | |
| "when": "editorTextFocus" | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment