Skip to content

Instantly share code, notes, and snippets.

@Snesi
Created June 5, 2018 18:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Snesi/956dc73fb1d4e4bb8091e87956143643 to your computer and use it in GitHub Desktop.
Save Snesi/956dc73fb1d4e4bb8091e87956143643 to your computer and use it in GitHub Desktop.
VS Code Keybindings similar to IntelliJ
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+enter",
"command": "editor.action.quickFix",
"when": "editorHasCodeActionsProvider && editorTextFocus && !editorReadonly"
},
{
"key": "cmd+.",
"command": "-editor.action.quickFix",
"when": "editorHasCodeActionsProvider && editorTextFocus && !editorReadonly"
},
{
"key": "cmd+e",
"command": "workbench.action.openRecent"
},
{
"key": "ctrl+r",
"command": "-workbench.action.openRecent"
},
{
"key": "cmd+e",
"command": "workbench.action.openPreviousRecentlyUsedEditorInGroup"
},
{
"key": "ctrl+shift+tab",
"command": "-workbench.action.openPreviousRecentlyUsedEditorInGroup"
},
{
"key": "cmd+r",
"command": "editor.action.startFindReplaceAction"
},
{
"key": "alt+cmd+f",
"command": "-editor.action.startFindReplaceAction"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment