Skip to content

Instantly share code, notes, and snippets.

@jossef
Created December 15, 2018 14:56
Show Gist options
  • Select an option

  • Save jossef/f97ee0244546f0065a137a7a8acb8239 to your computer and use it in GitHub Desktop.

Select an option

Save jossef/f97ee0244546f0065a137a7a8acb8239 to your computer and use it in GitHub Desktop.
intellij-vs to vscode keybindings
[
{
"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