123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- // Place your key bindings in this file to override the defaults
- [
- {
- "key": "alt+right",
- "command": "workbench.action.navigateForward",
- "when": "canNavigateForward"
- },
- {
- "key": "alt+left",
- "command": "workbench.action.navigateBack",
- "when": "canNavigateBack"
- },
- {
- "key": "ctrl+alt+-",
- "command": "-workbench.action.navigateBack",
- "when": "canNavigateBack"
- },
- {
- "key": "ctrl+m ctrl+q",
- "command": "-workbench.action.navigateToLastEditLocation"
- },
- {
- "key": "alt+backspace",
- "command": "workbench.action.navigateToLastEditLocation"
- },
- {
- "key": "f8",
- "command": "-extension.miramac.node.exec"
- },
- {
- "key": "f12",
- "command": "-goToNextReference",
- "when": "inReferenceSearchEditor || referenceSearchVisible"
- },
- {
- "key": "shift+f12",
- "command": "-goToPreviousReference",
- "when": "inReferenceSearchEditor || referenceSearchVisible"
- },
- {
- "key": "f12",
- "command": "-editor.gotoNextSymbolFromResult",
- "when": "hasSymbols"
- }
- ]
|