Skip to content

Instantly share code, notes, and snippets.

@yuki-takei
Forked from bpedman/keybindings.json
Last active August 22, 2021 06:23
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save yuki-takei/4b2f812241746494645148402908527c to your computer and use it in GitHub Desktop.
Save yuki-takei/4b2f812241746494645148402908527c to your computer and use it in GitHub Desktop.
Visual Studio Code - Eclipse Keybindings (Win, Linux)
[
{
"key": "ctrl+d",
"command": "editor.action.cutLines",
"when": "editorTextFocus"
},
{
"key": "ctrl+o",
"command": "workbench.action.gotoSymbol"
},
{
"key": "ctrl+[",
"command": "workbench.action.navigateBack"
},
{
"key": "ctrl+]",
"command": "workbench.action.navigateForward"
},
{
"key": "ctrl+l",
"command": "workbench.action.gotoLine"
},
{
"key": "F3",
"command": "editor.action.goToDeclaration"
},
{
"key": "ctrl+shift+g",
"command": "editor.action.referenceSearch.trigger"
},
{
"key": "ctrl+alt+r",
"command": "editor.action.rename",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+r",
"command": "workbench.action.quickOpen"
},
{
"key": "ctrl+shift+t",
"command": "workbench.action.quickOpen"
},
{
"key": "ctrl+f",
"command": "actions.find"
},
{
"key": "alt+left",
"command": "subwordNavigation.cursorSubwordLeft"
},
{
"key": "alt+right",
"command": "subwordNavigation.cursorSubwordRight"
},
{
"key": "alt+left",
"command": "subwordNavigation.cursorSubwordLeft"
},
{
"key": "shift+alt+left",
"command": "subwordNavigation.cursorSubwordLeftSelect"
},
{
"key": "shift+alt+right",
"command": "subwordNavigation.cursorSubwordRightSelect"
},
{
"key": "ctrl+alt+down",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+alt+up",
"command": "editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+alt+down",
"command": "editor.action.insertCursorBelow",
"when": "editorTextFocus"
},
{
"key": "shift+alt+up",
"command": "editor.action.insertCursorAbove",
"when": "editorTextFocus" },
{
"key": "alt+backspace",
"command": "subwordNavigation.deleteSubwordLeft"
},
{
"key": "ctrl+d",
"command": "editor.action.deleteLines",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+]",
"command": "workbench.files.action.openNextWorkingFile"
},
{
"key": "ctrl+shift+[",
"command": "workbench.files.action.openPreviousWorkingFile"
}
]
@bisignam
Copy link

Thanks, very useful.

@takokoyaki
Copy link

ただ今VS CODEを使い始めた、MSのホットキーは面倒くさいすぎです。
これは本当に助かりました、ありがとうございます。

@SovietFrontier
Copy link

still helpful a year later, thanks

@augusticor
Copy link

Very Interesting ! 👌

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