Guest User

Untitled

a guest
Nov 19th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. [
  2. {
  3. "key": "ctrl+cmd+left",
  4. "command": "workbench.action.navigateBack"
  5. },
  6. {
  7. "key": "ctrl+cmd+right",
  8. "command": "workbench.action.navigateForward"
  9. },
  10. {
  11. "key": "alt+cmd+left",
  12. "command": "editor.fold"
  13. },
  14. {
  15. "key": "alt+cmd+right",
  16. "command": "editor.unfold"
  17. },
  18. {
  19. "key": "alt+cmd+[",
  20. "command": "editor.action.moveLinesUpAction",
  21. "when": "editorTextFocus && !editorReadonly"
  22. },
  23. {
  24. "key": "alt+cmd+]",
  25. "command": "editor.action.moveLinesDownAction",
  26. "when": "editorTextFocus && !editorReadonly"
  27. },
  28. {
  29. "key": "ctrl+cmd+j",
  30. "command": "editor.action.goToDeclaration",
  31. "when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"
  32. },
  33. {
  34. "key": "f12",
  35. "command": "-editor.action.goToDeclaration",
  36. "when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"
  37. },
  38. {
  39. "key": "shift+cmd+o",
  40. "command": "workbench.action.showAllSymbols"
  41. },
  42. {
  43. "key": "cmd+t",
  44. "command": "-workbench.action.showAllSymbols"
  45. },
  46. {
  47. "key": "ctrl+cmd+up",
  48. "command": "C_Cpp.SwitchHeaderSource",
  49. "when": "editorTextFocus && editorLangId == 'c'"
  50. },
  51. {
  52. "key": "alt+o",
  53. "command": "-C_Cpp.SwitchHeaderSource",
  54. "when": "editorTextFocus && editorLangId == 'c'"
  55. },
  56. {
  57. "key": "ctrl+cmd+up",
  58. "command": "C_Cpp.SwitchHeaderSource",
  59. "when": "editorTextFocus && editorLangId == 'cpp'"
  60. },
  61. {
  62. "key": "alt+o",
  63. "command": "-C_Cpp.SwitchHeaderSource",
  64. "when": "editorTextFocus && editorLangId == 'cpp'"
  65. },
  66. {
  67. "key": "cmd+l",
  68. "command": "workbench.action.gotoLine"
  69. },
  70. {
  71. "key": "ctrl+g",
  72. "command": "-workbench.action.gotoLine"
  73. }
  74. ]
Add Comment
Please, Sign In to add comment