Skip to content

Instantly share code, notes, and snippets.

@hmemcpy
Created May 5, 2015 07:57
Show Gist options
  • Save hmemcpy/d5f4e2bc3f20d970892e to your computer and use it in GitHub Desktop.
Save hmemcpy/d5f4e2bc3f20d970892e to your computer and use it in GitHub Desktop.
ReSharper IntelliJ keybindings for Visual Studio Code
// ReSharper IntelliJ keybindings for Visual Studio Code
// This is a work in progress...
[
{ "key": "ctrl+b", "command": "editor.action.goToDeclaration",
"when": "editorTextFocus" },
{ "key": "alt+f7", "command": "editor.action.referenceSearch.trigger",
"when": "editorTextFocus" }
]
@KennyEliasson
Copy link

[
{ "key": "alt+enter", "command": "editor.action.quickFix",
"when": "editorTextFocus" },
{ "key": "cmd+b", "command": "editor.action.goToDeclaration",
"when": "editorTextFocus" },
{ "key": "alt+f7", "command": "editor.action.referenceSearch.trigger",
"when": "editorTextFocus" },
{ "key": "cmd+shift+alt+n", "command": "workbench.action.showAllSymbols" },
{ "key": "cmd+n", "command": "workbench.action.quickOpen" },
{ "key": "cmd+shift+n", "command": "workbench.action.quickOpen" },
{ "key": "cmd+f12", "command": "workbench.action.gotoSymbol"},
{ "key": "cmd+t l", "command": "workbench.action.tasks.test"},

{ "key": "cmd+p",           "command": "editor.action.triggerParameterHints"}

]

@KennyEliasson
Copy link

Change cmd to ctrl on windows.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment