Advertisement
Guest User

peynis

a guest
Mar 22nd, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. // Place your key bindings in this file to override the defaultsauto[]
  2. [
  3. {
  4. "key": "ctrl+alt+w",
  5. "command": "workbench.action.terminal.toggleTerminal"
  6. },
  7. {
  8. "key": "ctrl+alt+right",
  9. "command": "workbench.action.navigateForward"
  10. },
  11. {
  12. "key": "ctrl+alt+left",
  13. "command": "-workbench.action.navigateForward"
  14. },
  15. {
  16. "key": "ctrl+q",
  17. "command": "editor.debug.action.toggleBreakpoint",
  18. "when": "editorTextFocus"
  19. },
  20. {
  21. "key": "ctrl+q",
  22. "command": "editor.debug.action.toggleBreakpoint"
  23. },
  24. {
  25. "key": "alt+d",
  26. "command": "workbench.action.debug.continue",
  27. "when": "inDebugMode"
  28. },
  29. {
  30. "key": "alt+d",
  31. "command": "workbench.action.debug.start",
  32. "when": "!inDebugMode"
  33. },
  34. {
  35. "key": "alt+s",
  36. "command": "workbench.action.debug.stepOver",
  37. "when": "inDebugMode"
  38. },
  39. {
  40. "key": "alt+f",
  41. "command": "workbench.action.debug.stepInto",
  42. "when": "inDebugMode"
  43. },
  44. {
  45. "key": "ctrl+shift+d",
  46. "command": "workbench.action.debug.restart",
  47. "when": "inDebugMode"
  48. },
  49. {
  50. "key": "ctrl+shift+s",
  51. "command": "workbench.action.debug.stop",
  52. "when": "inDebugMode"
  53. },
  54. {
  55. "key": "alt+w",
  56. "command": "workbench.action.terminal.focus"
  57. },
  58. {
  59. "key": "ctrl+down",
  60. "command": "cursorMove",
  61. "args": {
  62. "to": "down",
  63. "by": "line",
  64. "value": 5
  65. },
  66. "when": "textInputFocus"
  67. },
  68. {
  69. "key": "ctrl+up",
  70. "command": "cursorMove",
  71. "args": {
  72. "to": "up",
  73. "by": "line",
  74. "value": 5
  75. },
  76. "when": "textInputFocus"
  77. },
  78. {
  79. "key": "alt+f",
  80. "command": "C_Cpp.Navigate",
  81. "when": "editorTextFocus && editorLangId == 'cpp'"
  82. }
  83. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement