Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.10 KB | None | 0 0
  1. // Place your key bindings in this file to overwrite the defaults
  2. [
  3. {
  4. "key": "ctrl+shift+f",
  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": "shift+cmd+f",
  15. "command": "search.action.focusActiveEditor",
  16. "when": "searchInputBoxFocus && searchViewletVisible"
  17. },
  18. {
  19. "key": "shift+cmd+f",
  20. "command": "-search.action.focusActiveEditor",
  21. "when": "searchInputBoxFocus && searchViewletVisible"
  22. },
  23. {
  24. "key": "shift+cmd+f",
  25. "command": "workbench.view.search",
  26. "when": "!searchViewletVisible"
  27. },
  28. {
  29. "key": "shift+cmd+f",
  30. "command": "-workbench.view.search",
  31. "when": "!searchViewletVisible"
  32. },
  33. {
  34. "key": "shift+cmd+f",
  35. "command": "workbench.action.findInFiles",
  36. "when": "!searchInputBoxFocus"
  37. },
  38. {
  39. "key": "shift+cmd+f",
  40. "command": "-workbench.action.findInFiles",
  41. "when": "!searchInputBoxFocus"
  42. },
  43. {
  44. "key": "shift+alt+cmd+down",
  45. "command": "cursorBottomSelect",
  46. "when": "textInputFocus"
  47. },
  48. {
  49. "key": "shift+cmd+down",
  50. "command": "-cursorBottomSelect",
  51. "when": "textInputFocus"
  52. },
  53. {
  54. "key": "shift+cmd+down",
  55. "command": "cursorColumnSelectDown",
  56. "when": "textInputFocus"
  57. },
  58. {
  59. "key": "shift+alt+cmd+down",
  60. "command": "-cursorColumnSelectDown",
  61. "when": "textInputFocus"
  62. },
  63. {
  64. "key": "shift+cmd+pagedown",
  65. "command": "cursorColumnSelectPageDown",
  66. "when": "textInputFocus"
  67. },
  68. {
  69. "key": "shift+alt+cmd+pagedown",
  70. "command": "-cursorColumnSelectPageDown",
  71. "when": "textInputFocus"
  72. },
  73. {
  74. "key": "shift+alt+cmd+up",
  75. "command": "workbench.action.terminal.selectToPreviousCommand",
  76. "when": "terminalFocus"
  77. },
  78. {
  79. "key": "shift+cmd+up",
  80. "command": "-workbench.action.terminal.selectToPreviousCommand",
  81. "when": "terminalFocus"
  82. },
  83. {
  84. "key": "shift+cmd+up",
  85. "command": "cursorColumnSelectUp",
  86. "when": "textInputFocus"
  87. },
  88. {
  89. "key": "shift+alt+cmd+up",
  90. "command": "-cursorColumnSelectUp",
  91. "when": "textInputFocus"
  92. },
  93. {
  94. "key": "shift+alt+cmd+up",
  95. "command": "cursorTopSelect",
  96. "when": "textInputFocus"
  97. },
  98. {
  99. "key": "shift+cmd+up",
  100. "command": "-cursorTopSelect",
  101. "when": "textInputFocus"
  102. },
  103. {
  104. "key": "shift+cmd+pageup",
  105. "command": "cursorColumnSelectPageUp",
  106. "when": "textInputFocus"
  107. },
  108. {
  109. "key": "shift+alt+cmd+pageup",
  110. "command": "-cursorColumnSelectPageUp",
  111. "when": "textInputFocus"
  112. },
  113. {
  114. "key": "shift+alt+cmd+right",
  115. "command": "cursorEndSelect",
  116. "when": "textInputFocus"
  117. },
  118. {
  119. "key": "shift+cmd+right",
  120. "command": "-cursorEndSelect",
  121. "when": "textInputFocus"
  122. },
  123. {
  124. "key": "shift+cmd+right",
  125. "command": "cursorColumnSelectRight",
  126. "when": "textInputFocus"
  127. },
  128. {
  129. "key": "shift+alt+cmd+right",
  130. "command": "-cursorColumnSelectRight",
  131. "when": "textInputFocus"
  132. },
  133. {
  134. "key": "shift+alt+cmd+left",
  135. "command": "cursorHomeSelect",
  136. "when": "textInputFocus"
  137. },
  138. {
  139. "key": "shift+cmd+left",
  140. "command": "-cursorHomeSelect",
  141. "when": "textInputFocus"
  142. },
  143. {
  144. "key": "shift+cmd+left",
  145. "command": "cursorColumnSelectLeft",
  146. "when": "textInputFocus"
  147. },
  148. {
  149. "key": "shift+alt+cmd+left",
  150. "command": "-cursorColumnSelectLeft",
  151. "when": "textInputFocus"
  152. },
  153. {
  154. "key": "cmd+h",
  155. "command": "editor.action.startFindReplaceAction"
  156. },
  157. {
  158. "key": "alt+cmd+f",
  159. "command": "-editor.action.startFindReplaceAction"
  160. }
  161. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement