Skip to content

Instantly share code, notes, and snippets.

@lunarxlark
Created March 27, 2019 08:48
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 lunarxlark/68ba3a963712608b48c4aee01416f48f to your computer and use it in GitHub Desktop.
Save lunarxlark/68ba3a963712608b48c4aee01416f48f to your computer and use it in GitHub Desktop.
vscode keybind
[
{
"key": "shift+f7",
"command": "editor.action.diffReview.prev",
"when": "isInDiffEditor"
},
{
"key": "shift+f7",
"command": "-editor.action.diffReview.prev",
"when": "isInDiffEditor"
},
{
"key": "cmd+k cmd+o",
"command": "workbench.action.openDefaultKeybindingsFile"
},
{
"key": "cmd+k shift+cmd+o",
"command": "workbench.action.openGlobalKeybindingsFile"
},
{
"key": "cmd+enter",
"command": "renameFile",
"when": "explorerViewletVisible && filesExplorerFocus"
},
{
"key": "enter",
"command": "-renameFile",
"when": "explorerViewletVisible && filesExplorerFocus"
},
{
"key": "enter",
"command": "list.select",
"when": "listFocus && !inputFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment