Guest User

Untitled

a guest
Apr 26th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. // Platzieren Sie Ihre Tastenzuordnungen in dieser Datei, um die Standardwerte zu überschreiben.
  2. [
  3. {
  4. "key": "ctrl+shift+d",
  5. "command": "editor.action.copyLinesDownAction",
  6. "when": "editorTextFocus && !editorReadonly"
  7. },
  8. {
  9. "key": "ctrl+shift+alt+down",
  10. "command": "-editor.action.copyLinesDownAction",
  11. "when": "editorTextFocus && !editorReadonly"
  12. },
  13. {
  14. "key": "ctrl+up",
  15. "command": "editor.action.moveLinesUpAction",
  16. "when": "editorTextFocus && !editorReadonly"
  17. },
  18. {
  19. "key": "alt+up",
  20. "command": "-editor.action.moveLinesUpAction",
  21. "when": "editorTextFocus && !editorReadonly"
  22. },
  23. {
  24. "key": "ctrl+down",
  25. "command": "editor.action.moveLinesDownAction",
  26. "when": "editorTextFocus && !editorReadonly"
  27. },
  28. {
  29. "key": "alt+down",
  30. "command": "-editor.action.moveLinesDownAction",
  31. "when": "editorTextFocus && !editorReadonly"
  32. },
  33. // {
  34. // "key": "numpad9",
  35. // "command": "workbench.action.terminal.focusNext"
  36. // },
  37. // {
  38. // "key": "numpad7",
  39. // "command": "workbench.action.terminal.focusPrevious"
  40. // },
  41. {
  42. "key": "numpad7",
  43. "command": "scrollLineDown",
  44. "when": "editorTextFocus"
  45. },
  46. {
  47. "key": "numpad8",
  48. "command": "scrollLineUp",
  49. "when": "editorTextFocus"
  50. },
  51. {
  52. "key": "numpad7",
  53. "command": "workbench.action.terminal.scrollDown",
  54. "when": "terminalFocus"
  55. },
  56. {
  57. "key": "numpad8",
  58. "command": "workbench.action.terminal.scrollUp",
  59. "when": "terminalFocus"
  60. },
  61. // Toggle between terminal and editor focus
  62. { "key": "numpad9", "command": "workbench.action.terminal.focus"},
  63. { "key": "numpad9", "command": "workbench.action.focusActiveEditorGroup", "when": "terminalFocus"}
  64.  
  65. ]
Add Comment
Please, Sign In to add comment