forked from enlangs/vscode-eclipse-keybindings
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkeybindings.json
More file actions
39 lines (39 loc) · 3.19 KB
/
keybindings.json
File metadata and controls
39 lines (39 loc) · 3.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Place your key bindings in this file to overwrite the defaults
[
{ "key": "alt+/", "command": "editor.action.triggerSuggest", "when": "editorTextFocus" },
{ "key": "ctrl+d", "command": "editor.action.cutLines", "when": "editorTextFocus" },
{ "key": "ctrl+d", "command": "editor.action.deleteLines", "when": "editorTextFocus" },
{ "key": "ctrl+alt+down", "command": "editor.action.copyLinesDownAction", "when": "editorTextFocus" },
{ "key": "ctrl+alt+up", "command": "editor.action.copyLinesUpAction", "when": "editorTextFocus" },
{ "key": "shift+alt+r", "command": "editor.action.rename", "when": "editorTextFocus" },
{ "key": "shift+alt+r", "command": "editor.action.changeAll", "when": "editorTextFocus" },
{ "key": "ctrl+shift+c", "command": "editor.action.commentLine", "when": "editorTextFocus" },
{ "key": "ctrl+k", "command": "editor.action.nextSelectionMatchFindAction", "when": "editorFocus" },
{ "key": "ctrl+shift+k", "command": "editor.action.previousSelectionMatchFindAction", "when": "editorFocus" },
{ "key": "alt+shift+2", "command": "workbench.action.splitEditor" },
{ "key": "ctrl+shift+f", "command": "editor.action.format", "when": "editorTextFocus" },
{ "key": "ctrl+shift+f", "command": "editor.action.trimTrailingWhitespace", "when": "editorTextFocus" },
{ "key": "ctrl+3", "command": "workbench.action.showCommands" },
{ "key": "ctrl+shift+r", "command": "workbench.action.quickOpen" },
{ "key": "ctrl+shift+s", "command": "workbench.action.files.saveAll" },
{ "key": "ctrl+1", "command": "editor.action.triggerSuggest", "when": "editorTextFocus" },
{ "key": "ctrl+shift+c", "command": "editor.action.commentLine", "when": "editorTextFocus" },
{ "key": "ctrl+alt+/", "command": "editor.action.blockComment", "when": "editorTextFocus" },
{ "key": "ctrl+h", "command": "workbench.view.search" },
{ "key": "alt+left", "command": "workbench.action.navigateBack" },
{ "key": "alt+right", "command": "workbench.action.navigateForward" },
{ "key": "ctrl+alt+h", "command": "editor.action.findReferences", "when": "editorTextFocus" },
{ "key": "f3", "command": "editor.action.goToDeclaration", "when": "editorTextFocus" },
{ "key": "ctrl+l", "command": "workbench.action.gotoLine" },
{ "key": "ctrl+o", "command": "workbench.action.gotoSymbol" }, // workbench.action.showAllSymbols
{ "key": "ctrl+b", "command": "workbench.action.tasks.build" },
{ "key": "f2", "command": "editor.action.previewDeclaration", "when": "editorTextFocus" },
{ "key": "ctrl+f2", "command": "editor.action.openDeclarationToTheSide", "when": "editorTextFocus" },
{ "key": "f5", "command": "workbench.files.action.refreshFilesExplorer" },
{ "key": "ctrl+m", "command": "workbench.action.maximizeEditor" }, // workbench.action.toggleFullScreen
{ "key": "f8", "command": "workbench.action.debug.continue", "when": "inDebugMode" },
{ "key": "f5", "command": "workbench.action.debug.stepInto", "when": "inDebugMode" },
{ "key": "f6", "command": "workbench.action.debug.stepOver", "when": "inDebugMode" },
{ "key": "f7", "command": "workbench.action.debug.stepOut", "when": "inDebugMode" },
{ "key": "ctrl+shift+i", "command": "editor.action.showHover", "when": "inDebugMode" }
]