Guest User

Untitled

a guest
Jul 23rd, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.97 KB | None | 0 0
  1. // Place your key bindings in this file to overwrite the defaults
  2. [
  3. {
  4. "key": "shift+cmd+n",
  5. "command": "extension.advancedNewFile"
  6. },
  7. {
  8. "key": "alt+cmd+n",
  9. "command": "-extension.advancedNewFile"
  10. },
  11. {
  12. "key": "ctrl+shift+k",
  13. "command": "-editor.action.deleteLines",
  14. "when": "editorTextFocus"
  15. },
  16. {
  17. "key": "shift+cmd+d",
  18. "command": "workbench.view.debug"
  19. },
  20. {
  21. "key": "shift+cmd+d",
  22. "command": "-workbench.view.debug"
  23. },
  24. {
  25. "key": "shift+cmd+d",
  26. "command": "-editor.action.copyLinesDownAction",
  27. "when": "editorTextFocus"
  28. },
  29. {
  30. "key": "cmd+\\",
  31. "command": "workbench.action.debug.continue",
  32. "when": "inDebugMode"
  33. },
  34. {
  35. "key": "f5",
  36. "command": "-workbench.action.debug.continue",
  37. "when": "inDebugMode"
  38. },
  39. {
  40. "key": "cmd+'",
  41. "command": "workbench.action.debug.stepOver",
  42. "when": "inDebugMode"
  43. },
  44. {
  45. "key": "f10",
  46. "command": "-workbench.action.debug.stepOver",
  47. "when": "inDebugMode"
  48. },
  49. {
  50. "key": "cmd+\\",
  51. "command": "-workbench.action.terminal.split",
  52. "when": "terminalFocus"
  53. },
  54. {
  55. "key": "cmd+\\",
  56. "command": "-workbench.action.splitEditor"
  57. },
  58. {
  59. "key": "shift+cmd+\\",
  60. "command": "workbench.action.toggleSidebarVisibility"
  61. },
  62. {
  63. "key": "cmd+\\",
  64. "command": "-workbench.action.toggleSidebarVisibility"
  65. },
  66. {
  67. "key": "shift+cmd+backspace",
  68. "command": "editor.action.deleteLines",
  69. "when": "editorTextFocus && !editorReadonly"
  70. },
  71. {
  72. "key": "shift+cmd+k",
  73. "command": "-editor.action.deleteLines",
  74. "when": "editorTextFocus && !editorReadonly"
  75. },
  76. {
  77. "key": "cmd+o",
  78. "command": "workbench.action.addRootFolder"
  79. },
  80. {
  81. "key": "ctrl+`",
  82. "command": "multiCommand.focusTerminalResize",
  83. "when": "!terminalFocus"
  84. },
  85. {
  86. "key": "ctrl+A J",
  87. "command": "multiCommand.focusTerminalResize",
  88. "when": "!terminalFocus"
  89. },
  90. {
  91. "key": "ctrl+A ctrl+J",
  92. "command": "multiCommand.focusTerminalResize",
  93. "when": "!terminalFocus"
  94. },
  95. {
  96. "key": "ctrl+`",
  97. "command": "multiCommand.focusEditorResize",
  98. "when": "terminalFocus"
  99. },
  100. {
  101. "key": "F13",
  102. "command": "multiCommand.focusEditorResize",
  103. "when": "terminalFocus"
  104. },
  105. {
  106. "key": "alt+'",
  107. "command": "workbench.action.terminal.split",
  108. },
  109. {
  110. "key": "alt+=",
  111. "command": "workbench.action.terminal.new"
  112. },
  113. {
  114. "key": "alt+1",
  115. "command": "workbench.action.terminal.focusAtIndex1"
  116. },
  117. {
  118. "key": "alt+2",
  119. "command": "workbench.action.terminal.focusAtIndex2"
  120. },
  121. {
  122. "key": "alt+3",
  123. "command": "workbench.action.terminal.focusAtIndex3"
  124. },
  125. {
  126. "key": "alt+4",
  127. "command": "workbench.action.terminal.focusAtIndex4"
  128. },
  129. {
  130. "key": "alt+5",
  131. "command": "workbench.action.terminal.focusAtIndex5"
  132. },
  133. {
  134. "key": "alt+6",
  135. "command": "workbench.action.terminal.focusAtIndex6"
  136. },
  137. {
  138. "key": "alt+7",
  139. "command": "workbench.action.terminal.focusAtIndex7"
  140. },
  141. {
  142. "key": "alt+8",
  143. "command": "workbench.action.terminal.focusAtIndex8"
  144. },
  145. {
  146. "key": "alt+9",
  147. "command": "workbench.action.terminal.focusAtIndex9"
  148. },
  149. {
  150. "key": "alt+-",
  151. "command": "workbench.action.terminal.kill",
  152. },
  153. {
  154. "key": "ctrl+a",
  155. "command": "-cursorLineStart",
  156. "when": "textInputFocus"
  157. },
  158. {
  159. "key": "cmd+=",
  160. "command": "workbench.action.toggleMaximizedPanel"
  161. },
  162. {
  163. "key": "cmd+-",
  164. "command": "workbench.action.toggleMaximizedPanel"
  165. },
  166. {
  167. "key": "cmd+=",
  168. "command": "-workbench.action.zoomIn"
  169. },
  170. {
  171. "key": "shift+cmd+=",
  172. "command": "-workbench.action.zoomIn"
  173. },
  174. {
  175. "key": "cmd+-",
  176. "command": "-workbench.action.zoomOut"
  177. },
  178. {
  179. "key": "shift+cmd+-",
  180. "command": "-workbench.action.zoomOut"
  181. },
  182. {
  183. "key": "cmd+k",
  184. "command": "workbench.action.terminal.clear",
  185. "when": "terminalFocus"
  186. },
  187. {
  188. "key": "ctrl+h",
  189. "command": "cursorLeft",
  190. "when": "!terminalFocus"
  191. },
  192. {
  193. "key": "ctrl+j",
  194. "command": "cursorDown",
  195. "when": "!terminalFocus"
  196. },
  197. {
  198. "key": "ctrl+k",
  199. "command": "cursorUp",
  200. "when": "!terminalFocus"
  201. },
  202. {
  203. "key": "ctrl+l",
  204. "command": "cursorRight",
  205. "when": "!terminalFocus"
  206. },
  207. {
  208. "key": "ctrl+j",
  209. "command": "-editor.action.joinLines",
  210. "when": "editorTextFocus && !editorReadonly"
  211. },
  212. {
  213. "key": "ctrl+k",
  214. "command": "-deleteAllRight",
  215. "when": "textInputFocus && !editorReadonly"
  216. },
  217. {
  218. "key": "shift+cmd+a",
  219. "command": "workbench.action.toggleActivityBarVisibility"
  220. },
  221. {
  222. "key": "shift+cmd+g",
  223. "command": "workbench.view.scm"
  224. },
  225. {
  226. "key": "ctrl+shift+g",
  227. "command": "-workbench.view.scm"
  228. },
  229. {
  230. "key": "ctrl+cmd+l",
  231. "command": "workbench.action.moveEditorToNextGroup"
  232. },
  233. {
  234. "key": "ctrl+cmd+right",
  235. "command": "-workbench.action.moveEditorToNextGroup"
  236. },
  237. {
  238. "key": "ctrl+cmd+h",
  239. "command": "workbench.action.moveEditorToPreviousGroup"
  240. },
  241. {
  242. "key": "ctrl+cmd+left",
  243. "command": "-workbench.action.moveEditorToPreviousGroup"
  244. },
  245. {
  246. "key": "ctrl+cmd+k",
  247. "command": "workbench.action.moveEditorToAboveGroup"
  248. },
  249. {
  250. "key": "ctrl+cmd+j",
  251. "command": "workbench.action.moveEditorToBelowGroup"
  252. }
  253. ]
Add Comment
Please, Sign In to add comment