Advertisement
Guest User

Untitled

a guest
May 21st, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. // Place your key bindings in this file to override the defaults
  2. // Place your key bindings in this file to override the defaults
  3. [
  4. {
  5. "key": "cmd+enter",
  6. "command": "renameFile",
  7. "when": "explorerViewletVisible && filesExplorerFocus"
  8. },
  9. {
  10. "key": "enter",
  11. "command": "-renameFile",
  12. "when": "explorerViewletVisible && filesExplorerFocus"
  13. },
  14. {
  15. "key": "enter",
  16. "command": "list.select",
  17. "when": "listFocus && !inputFocus"
  18. },
  19. {
  20. "key": "cmd+space",
  21. "command": "-editor.action.triggerSuggest",
  22. "when": "editorHasCompletionItemProvider && textInputFocus && !editorReadonly"
  23. },
  24. {
  25. "key": "shift+space",
  26. "command": "extension.vim_escape",
  27. "when": "editorTextFocus"
  28. },
  29. {
  30. "key": "cmd+shift+v",
  31. "command": "-markdown.extension.togglePreview",
  32. "when": "!terminalFocus"
  33. },
  34. {
  35. "key": "capslock capslock",
  36. "command": "editor.action.formatDocument",
  37. "when": "editorTextFocus && !editorReadonly"
  38. },
  39. {
  40. "key": "cmd+shift+i",
  41. "command": "-editor.action.formatDocument",
  42. "when": "editorTextFocus && !editorReadonly"
  43. },
  44. {
  45. "key": "cmd+shift+pagedown",
  46. "command": "workbench.action.moveActiveEditorGroupRight"
  47. },
  48. {
  49. "key": "cmd+k right",
  50. "command": "-workbench.action.moveActiveEditorGroupRight"
  51. },
  52. {
  53. "key": "cmd+shift+pageup",
  54. "command": "workbench.action.moveActiveEditorGroupLeft"
  55. },
  56. {
  57. "key": "cmd+k left",
  58. "command": "-workbench.action.moveActiveEditorGroupLeft"
  59. },
  60. {
  61. "key": "cmd+shift+pagedown",
  62. "command": "workbench.action.moveEditorToRightGroup"
  63. },
  64. {
  65. "key": "cmd+shift+pageup",
  66. "command": "workbench.action.moveEditorToLeftGroup"
  67. }
  68. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement