Skip to content

Instantly share code, notes, and snippets.

@webartoli
Last active January 3, 2022 09:47
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save webartoli/de2d33fd193937e7512a to your computer and use it in GitHub Desktop.
Save webartoli/de2d33fd193937e7512a to your computer and use it in GitHub Desktop.
Visual Studio Code - IntelliJ keybindings Scheme
// file: keybindings.json
// path: AppData\Roaming\Code\User
// Author: Claudio Bartoli
// Mail: claudio@barto.li
// --------------------------------------------
// Resharper 9 Default Keymap - IntelliJ Scheme
// --------------------------------------------
[
{ "key": "ctrl+d", "command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus" },
{ "key": "ctrl+l", "command": "editor.action.deleteLines",
"when": "editorTextFocus" },
{ "key": "ctrl+shift+s", "command": "workbench.action.files.saveAll" },
{ "key": "ctrl+alt+l" , "command": "workbench.action.files.revealActiveFileInWindows" },
{ "key": "ctrl+n", "command": "workbench.action.quickOpen" },
{ "key": "ctrl+m", "command": "editor.action.goToTypeDeclaration" },
{ "key": "ctrl+-", "command": "workbench.action.navigateBack" },
{ "key": "ctrl+shift+alt+n", "command": "workbench.action.gotoSymbol" },
{ "key": "ctrl+w", "command": "editor.action.smartSelect.grow",
"when": "editorTextFocus" },
{ "key": "ctrl+shift+w", "command": "editor.action.smartSelect.shrink",
"when": "editorTextFocus" },
{ "key": "ctrl+7", "command": "editor.action.commentLine",
"when": "editorTextFocus" }
]
@webartoli
Copy link
Author

%Appdata%\Code\User\keybindings.json

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