Advertisement
Guest User

Untitled

a guest
Mar 14th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. // Place your key bindings in this file to overwrite the defaults
  2. [
  3. // Toggle between terminal and editor focus
  4. { "key": "shift+tab", "command": "workbench.action.terminal.focus"},
  5. { "key": "shift+tab", "command": "workbench.action.focusActiveEditorGroup", "when": "terminalFocus"},
  6. { "key": "shift+space", "command": "cursorWordEndRight"},
  7. {
  8. "key": "tab",
  9. "command": "selectNextQuickFix",
  10. "when": "editorFocus && quickFixWidgetVisible"
  11. },
  12. {
  13. "key": "shift+tab",
  14. "command": "selectPrevQuickFix",
  15. "when": "editorFocus && quickFixWidgetVisible"
  16. },
  17. {
  18. "key": "tab",
  19. "command": "selectNextSuggestion",
  20. "when": "editorTextFocus && suggestWidgetMultipleSuggestions && suggestWidgetVisible"
  21. },
  22. {
  23. "key": "shift+tab",
  24. "command": "selectPrevSuggestion",
  25. "when": "editorTextFocus && suggestWidgetMultipleSuggestions && suggestWidgetVisible"
  26. }
  27. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement