Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. [
  2. {
  3. "key": "cmd+r",
  4. "command": "workbench.action.debug.continue"
  5. },
  6. {
  7. "key": "cmd+r",
  8. "command": "workbench.action.debug.start"
  9. },
  10. {
  11. "key": "cmd+f11",
  12. "command": "workbench.action.debug.continue"
  13. },
  14. {
  15. "key": "cmd+f11",
  16. "command": "workbench.action.debug.start"
  17. },
  18. {
  19. "key": "cmd+shift+w",
  20. "command": "workbench.action.closeFolder"
  21. },
  22. {
  23. "key": "cmd+2",
  24. "command": "editor.action.commentLine"
  25. },
  26. {
  27. "key": "cmd+3",
  28. "command": "editor.action.removeCommentLine"
  29. },
  30. {
  31. "key": "cmd+d",
  32. "command": "editor.action.deleteLines",
  33. "when": "editorTextFocus"
  34. },
  35. {
  36. "key": "cmd+alt+w",
  37. "command": "workbench.files.action.closeFile"
  38. },
  39. {
  40. "key": "cmd+alt+down",
  41. "command": "editor.action.copyLinesDownAction",
  42. "when": "editorTextFocus"
  43. },
  44. {
  45. "key": "cmd+alt+up",
  46. "command": "editor.action.copyLinesUpAction",
  47. "when": "editorTextFocus"
  48. },
  49. {
  50. "key": "cmd+s",
  51. "command": "workbench.action.files.saveAll"
  52. }
  53. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement