Guest User

Untitled

a guest
Mar 17th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. // Place your key bindings in this file to overwrite the defaults
  2. [
  3. {
  4. "key": "cmd+.",
  5. "command": "workbench.action.terminal.focus",
  6. "when": "!terminalFocus"
  7. },
  8. {
  9. "key": "cmd+]",
  10. "command": "workbench.action.terminal.focusNext",
  11. "when": "terminalFocus"
  12. },
  13. {
  14. "key": "cmd+[",
  15. "command": "workbench.action.terminal.focusPrevious",
  16. "when": "terminalFocus"
  17. },
  18. {
  19. "key": "cmd+/",
  20. "command": "workbench.action.terminal.kill",
  21. "when": "terminalFocus"
  22. },
  23. {
  24. "key": "cmd+shift+t",
  25. "command": "workbench.action.terminal.new",
  26. "when": "terminalFocus"
  27. },
  28. {
  29. "key": "cmd+ctrl+s",
  30. "command": "sortLines.sortLines",
  31. "when": "editorTextFocus"
  32. },
  33. ]
Add Comment
Please, Sign In to add comment