Skip to content

Instantly share code, notes, and snippets.

@tszpinda
Created August 16, 2017 11:18
Show Gist options
  • Save tszpinda/47792ec9bc41cf3893b0665e59134563 to your computer and use it in GitHub Desktop.
Save tszpinda/47792ec9bc41cf3893b0665e59134563 to your computer and use it in GitHub Desktop.
visual studio keys config
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "f3",
"command": "editor.action.goToDeclaration",
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"
},
{
"key": "f12",
"command": "-editor.action.goToDeclaration",
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"
},
{
"key": "ctrl+oem_period",
"command": "editor.action.marker.next",
"when": "editorFocus && !editorReadonly"
},
{
"key": "f8",
"command": "-editor.action.marker.next",
"when": "editorFocus && !editorReadonly"
},
{
"key": "ctrl+shift+oem_period",
"command": "editor.action.marker.prev",
"when": "editorFocus && !editorReadonly"
},
{
"key": "shift+f8",
"command": "-editor.action.marker.prev",
"when": "editorFocus && !editorReadonly"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment