Skip to content

Instantly share code, notes, and snippets.

@abdumu
Last active May 15, 2019 18:20
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 abdumu/d1f322e8601cd61e19dfb885f15b2271 to your computer and use it in GitHub Desktop.
Save abdumu/d1f322e8601cd61e19dfb885f15b2271 to your computer and use it in GitHub Desktop.
my vscode keybindings.json
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "cmd+enter",
"command": "editor.action.showContextMenu",
"when": "editorTextFocus"
},
{
"key": "shift+g",
"command": "workbench.view.scm"
},
{
"key": "shift+e",
"command": "workbench.view.explorer"
},
{
"key": "shift+f",
"command": "-workbench.action.findInFiles",
"when": "!searchInputBoxFocus"
},
{
"key": "shift+x",
"command": "workbench.view.extensions"
},
{
"key": "shift+r",
"command": "better-phpunit.run"
},
{
"key": "alt+cmd+d",
"command": "editor.action.addSelectionToNextFindMatch",
"when": "editorFocus"
},
{
"key": "cmd+down",
"command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "cmd+up",
"command": "editor.action.moveLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment