Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. // Place your key bindings in this file to overwrite the defaults
  2. [
  3. {
  4. "key": "ctrl+shift+i",
  5. "command": "editor.action.formatDocument",
  6. "when": "editorTextFocus && !editorReadonly"
  7. },
  8. {
  9. "key": "shift+alt+f",
  10. "command": "-editor.action.formatDocument",
  11. "when": "editorTextFocus && !editorReadonly"
  12. },
  13. {
  14. "key": "ctrl+shift+d",
  15. "command": "-workbench.view.debug"
  16. },
  17. {
  18. "key": "ctrl+shift+d",
  19. "command": "editor.action.copyLinesDownAction",
  20. "when": "editorTextFocus && !editorReadonly"
  21. },
  22. {
  23. "key": "shift+alt+down",
  24. "command": "-editor.action.copyLinesDownAction",
  25. "when": "editorTextFocus && !editorReadonly"
  26. },
  27. { "key": "ctrl+`", "command": "workbench.action.terminal.focus" },
  28. {
  29. "key": "ctrl+`",
  30. "command": "workbench.action.focusActiveEditorGroup",
  31. "when": "terminalFocus"
  32. },
  33. {
  34. "key": "ctrl+shift+i",
  35. "command": "-workbench.action.toggleDevTools",
  36. "when": "isDevelopment"
  37. },
  38. {
  39. "key": "ctrl+shift+i",
  40. "command": "-emojisense.quickEmojitext",
  41. "when": "editorTextFocus"
  42. },
  43. {
  44. "key": "ctrl+shift+i",
  45. "command": "-emojisense.quickEmojitextTerminal",
  46. "when": "terminalFocus"
  47. }
  48. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement