Guest User

Untitled

a guest
Jan 20th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. [
  2. {
  3. "key": "ctrl+r",
  4. "command": "workbench.action.gotoSymbol"
  5. },
  6. {
  7. "key": "ctrl+shift+r",
  8. "command": "workbench.action.showAllSymbols"
  9. },
  10. {
  11. "key": "ctrl+shift+d",
  12. "command": "editor.action.copyLinesDownAction",
  13. "when": "editorTextFocus"
  14. },
  15. {
  16. "key": "ctrl+1",
  17. "command": "workbench.action.toggleSidebarVisibility"
  18. },
  19. {
  20. "key": "ctrl+down",
  21. "command": "editor.action.moveLinesDownAction",
  22. "when": "editorTextFocus && !editorReadonly"
  23. },
  24. {
  25. "key": "ctrl+up",
  26. "command": "editor.action.moveLinesUpAction",
  27. "when": "editorTextFocus && !editorReadonly"
  28. },
  29. {
  30. "key": "tab",
  31. "command": "-editor.emmet.action.expandAbbreviation",
  32. "when": "config.emmet.triggerExpansionOnTab && editorTextFocus && !editorReadonly && !editorTabMovesFocus"
  33. },
  34. {
  35. "key": "ctrl+e",
  36. "command": "-workbench.action.quickOpen"
  37. },
  38. {
  39. "key": "ctrl+e",
  40. "command": "-workbench.action.quickOpenNavigateNextInFilePicker",
  41. "when": "inFilesPicker && inQuickOpen"
  42. },
  43. {
  44. "key": "ctrl+e",
  45. "command": "editor.emmet.action.expandAbbreviation"
  46. },
  47. ]
Add Comment
Please, Sign In to add comment