keybindings.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // Place your key bindings in this file to override the defaults
  2. [
  3. {
  4. "key": "alt+right",
  5. "command": "workbench.action.navigateForward",
  6. "when": "canNavigateForward"
  7. },
  8. {
  9. "key": "alt+left",
  10. "command": "workbench.action.navigateBack",
  11. "when": "canNavigateBack"
  12. },
  13. {
  14. "key": "ctrl+alt+-",
  15. "command": "-workbench.action.navigateBack",
  16. "when": "canNavigateBack"
  17. },
  18. {
  19. "key": "ctrl+m ctrl+q",
  20. "command": "-workbench.action.navigateToLastEditLocation"
  21. },
  22. {
  23. "key": "alt+backspace",
  24. "command": "workbench.action.navigateToLastEditLocation"
  25. },
  26. {
  27. "key": "f8",
  28. "command": "-extension.miramac.node.exec"
  29. },
  30. {
  31. "key": "f12",
  32. "command": "-goToNextReference",
  33. "when": "inReferenceSearchEditor || referenceSearchVisible"
  34. },
  35. {
  36. "key": "shift+f12",
  37. "command": "-goToPreviousReference",
  38. "when": "inReferenceSearchEditor || referenceSearchVisible"
  39. },
  40. {
  41. "key": "f12",
  42. "command": "-editor.gotoNextSymbolFromResult",
  43. "when": "hasSymbols"
  44. }
  45. ]