Guest User

Untitled

a guest
Apr 26th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. // Place your key bindings in this file to overwrite the defaults
  2. [
  3. {
  4. "key": "ctrl+shift+[BracketLeft]",
  5. "command": "editor.fold",
  6. "when": "editorTextFocus"
  7. },
  8. {
  9. "key": "ctrl+[",
  10. "command": "-editor.fold",
  11. "when": "editorTextFocus"
  12. },
  13. {
  14. "key": "ctrl+shift+[BracketRight]",
  15. "command": "editor.unfold",
  16. "when": "editorFocus"
  17. },
  18. {
  19. "key": "ctrl+]",
  20. "command": "-editor.unfold",
  21. "when": "editorFocus"
  22. },
  23. {
  24. "key": "ctrl+`",
  25. "command": "workbench.action.terminal.focus"
  26. },
  27. {
  28. "key": "ctrl+`",
  29. "command": "workbench.action.focusActiveEditorGroup",
  30. "when": "terminalFocus"
  31. },
  32. {
  33. "key": "escape",
  34. "command": "workbench.action.terminal.toggleTerminal",
  35. "when": "terminalFocus"
  36. },
  37. {
  38. "key": "ctrl+shift+w",
  39. "command": "workbench.action.terminal.kill",
  40. "when": "terminalFocus"
  41. },
  42. {
  43. "key": "ctrl+shift+o",
  44. "command": "workbench.action.terminal.split",
  45. "when": "terminalFocus"
  46. },
  47. {
  48. "key": "ctrl+shift+j",
  49. "command": "workbench.action.editor.previousChange",
  50. "when": "editorFocus"
  51. },
  52. {
  53. "key": "ctrl+shift+k",
  54. "command": "workbench.action.editor.nextChange",
  55. "when": "editorFocus"
  56. }
  57. ]
Add Comment
Please, Sign In to add comment