keybindings.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. // Place your key bindings in this file to override the defaultsauto[]
  2. [
  3. {
  4. "key": "cmd+k cmd+j",
  5. "command": "workbench.action.toggleMaximizedPanel"
  6. },
  7. {
  8. "key": "cmd+k cmd+z",
  9. "command": "workbench.action.maximizeEditor"
  10. },
  11. {
  12. "key": "cmd+k shift+cmd+z",
  13. "command": "workbench.action.evenEditorWidths"
  14. },
  15. {
  16. "key": "cmd+k cmd+z",
  17. "command": "workbench.action.toggleMaximizedPanel",
  18. "when": "terminalFocus"
  19. },
  20. {
  21. "key": "alt+cmd+/",
  22. "command": "-liveshare.followToTheSide",
  23. "when": "liveshare:hasCollaborators"
  24. },
  25. {
  26. "key": "alt+cmd+/",
  27. "command": "editor.action.blockComment",
  28. "when": "editorTextFocus && !editorReadonly"
  29. },
  30. {
  31. "key": "shift+alt+a",
  32. "command": "-editor.action.blockComment",
  33. "when": "editorTextFocus && !editorReadonly"
  34. },
  35. {
  36. "key": "cmd+k cmd+u",
  37. "command": "editor.action.transformToUppercase"
  38. },
  39. {
  40. "key": "cmd+k cmd+l",
  41. "command": "editor.action.transformToLowercase"
  42. },
  43. {
  44. "key": "ctrl+shift+w",
  45. "command": "editor.emmet.action.wrapWithAbbreviation"
  46. },
  47. {
  48. "key": "ctrl+t",
  49. "command": "-editor.action.transposeLetters",
  50. "when": "textInputFocus && !editorReadonly"
  51. },
  52. {
  53. "key": "ctrl+t",
  54. "command": "extension.transpose"
  55. },
  56. {
  57. "key": "cmd+h",
  58. "command": "workbench.files.action.collapseExplorerFolders"
  59. },
  60. {
  61. "key": "cmd+, cmd+,",
  62. "command": "workbench.action.openSettings"
  63. },
  64. {
  65. "key": "cmd+,",
  66. "command": "-workbench.action.openSettings"
  67. }
  68. ]