Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. // Place your key bindings in this file to overwrite the defaults
  2. [
  3. {
  4. "key": "ctrl+7",
  5. "command": "editor.action.commentLine",
  6. "when": "editorTextFocus && !editorReadonly"
  7. },
  8. {
  9. "key": "ctrl+shift+7",
  10. "command": "editor.action.blockComment",
  11. "when": "editorTextFocus && !editorReadonly"
  12. },
  13. {
  14. "key": "alt+f7",
  15. "command": "editor.action.findReferences",
  16. "when": "editorTextFocus"
  17. },
  18. {
  19. "key": "ctrl+b",
  20. "command": "editor.action.goToDeclaration",
  21. "when": "editorHasDefinitionProvider && editorTextFocus"
  22. },
  23. {
  24. "key": "ctrl+shift+a",
  25. "command": "workbench.action.terminal.toggleTerminal"
  26. },
  27. {
  28. "key": "ctrl+shift+2",
  29. "command": "workbench.action.terminal.focusNext",
  30. "when": "terminalFocus"
  31. },
  32. {
  33. "key": "ctrl+3",
  34. "command": "workbench.action.focusPanel"
  35. },
  36. {
  37. "key": "ctrl+3",
  38. "command": "workbench.action.focusPanel"
  39. },
  40. {
  41. "key": "ctrl+alt+e",
  42. "command": "workbench.files.action.focusFilesExplorer"
  43. },
  44. {
  45. "key": "alt+enter",
  46. "command": "editor.action.selectAllMatches",
  47. "when": "editorFocus"
  48. },
  49. {
  50. "key": "ctrl+shift+alt+d",
  51. "command": "editor.action.changeAll",
  52. "when": "editorTextFocus && !editorReadonly"
  53. }
  54. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement