keybindings.json 966 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // Place your key bindings in this file to overwrite the defaults
  2. [{
  3. "key": "ctrl+cmd+shift+e",
  4. "command": "workbench.action.tasks.runTask",
  5. "args": "Eject SD (macOS)"
  6. },
  7. {
  8. "key": "shift+cmd+o",
  9. "command": "workbench.action.addRootFolder"
  10. },
  11. {
  12. "key": "ctrl+h",
  13. "command": "workbench.action.focusPreviousGroup"
  14. },
  15. {
  16. "key": "ctrl+l",
  17. "command": "workbench.action.focusNextGroup"
  18. },
  19. {
  20. // reload window, use tmux binding of `ctrl+s` then `ctrl+r` to reload window
  21. "key": "ctrl+s ctrl+r",
  22. "command": "workbench.action.reloadWindow",
  23. "when": "editorTextFocus"
  24. },
  25. {
  26. "key": "ctrl+s m",
  27. "command": "workbench.action.toggleEditorWidths"
  28. },
  29. {
  30. "key": "ctrl+s z",
  31. "command": "workbench.action.toggleMaximizedPanel"
  32. },
  33. {
  34. "key": "ctrl+s x",
  35. "command": "workbench.action.closePanel"
  36. },
  37. {
  38. "key": "shift+cmd+d shift+cmd+d",
  39. "command": "extension.decryptSelection"
  40. }
  41. ]