Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. // Place your key bindings in this file to override the defaultsauto[]
  2. [
  3. {
  4. "key": "ctrl+e",
  5. "command": "cursorEnd",
  6. "when": "textInputFocus"
  7. },
  8. {
  9. "key": "end",
  10. "command": "cursorEnd",
  11. "when": "textInputFocus"
  12. },
  13. {
  14. "key": "ctrl+q",
  15. "command": "cursorHome",
  16. "when": "textInputFocus"
  17. },
  18. {
  19. "key": "ctrl+n",
  20. "command": "cursorDown",
  21. "when": "textInputFocus"
  22. },
  23. {
  24. "key": "ctrl+p",
  25. "command": "cursorUp",
  26. "when": "textInputFocus"
  27. },
  28. {
  29. "key": "home",
  30. "command": "cursorHome",
  31. "when": "textInputFocus"
  32. },
  33. { "key": "ctrl+`",
  34. "command": "workbench.action.terminal.focus"
  35. },
  36. { "key": "ctrl+`",
  37. "command": "workbench.action.focusActiveEditorGroup",
  38. "when": "terminalFocus"
  39. },
  40. { "key": "ctrl+r",
  41. "command": "deleteWordLeft",
  42. "when": "textInputFocus"
  43. },
  44. { "key": "ctrl+k",
  45. "command": "deleteAllRight",
  46. "when": "textInputFocus"
  47. },
  48. { "key": "ctrl+k",
  49. "command": "deleteAllRight",
  50. "when": "textInputFocus"
  51. },
  52. { "key": "ctrl+tab",
  53. "command": "workbench.action.nextEditor"
  54. },
  55. { "key": "ctrl+shift+tab",
  56. "command": "workbench.action.previousEditor"
  57. },
  58. { "key": "ctrl+b",
  59. "command": "cursorLeft",
  60. "when": "textInputFocus"
  61. },
  62. { "key": "ctrl+2",
  63. "command": "cursorPageDown",
  64. "when": "textInputFocus"
  65. },
  66. { "key": "ctrl+3",
  67. "command": "cursorPageUp",
  68. "when": "textInputFocus"
  69. },
  70. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement