Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.76 KB | None | 0 0
  1. keybinding.json, ctrl + s, ctrl + k
  2. // Place your key bindings in this file to overwrite the defaults
  3.  
  4. [
  5.     {
  6.         "key": "ctrl+]",
  7.         "command": "editor.action.goToDeclaration",
  8.         "when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"
  9.     },
  10.     {
  11.         "key": "ctrl+t",
  12.         "command": "workbench.action.navigateBack"
  13.     },
  14.     {
  15.         "key": "cmd+1",
  16.         "command": "workbench.action.openEditorAtIndex1"
  17.     },
  18.     {
  19.         "key": "cmd+2",
  20.         "command": "workbench.action.openEditorAtIndex2"
  21.     },
  22.     {
  23.         "key": "cmd+3",
  24.         "command": "workbench.action.openEditorAtIndex3"
  25.     },
  26.     {
  27.         "key": "cmd+4",
  28.         "command": "workbench.action.openEditorAtIndex4"
  29.     },
  30.     {
  31.         "key": "cmd+5",
  32.         "command": "workbench.action.openEditorAtIndex5"
  33.     },
  34.     {
  35.         "key": "cmd+6",
  36.         "command": "workbench.action.openEditorAtIndex6"
  37.     },
  38.     {
  39.         "key": "cmd+7",
  40.         "command": "workbench.action.openEditorAtIndex7"
  41.     },
  42.     {
  43.         "key": "cmd+8",
  44.         "command": "workbench.action.openEditorAtIndex8"
  45.     },
  46.     {
  47.         "key": "cmd+9",
  48.         "command": "workbench.action.openEditorAtIndex9"
  49.     },
  50.     {
  51.         "key": "ctrl+k",
  52.         "command": "workbench.action.switchWindow"
  53.     },
  54.     {
  55.         "key": "ctrl+p",
  56.         "command": "workbench.action.quickOpen"
  57.     },
  58.     {
  59.         "key": "ctrl+j",
  60.         "command": "workbench.action.quickOpenNavigateNext",
  61.         "when": "inQuickOpen"
  62.     },
  63.     {
  64.         "key": "ctrl+k",
  65.         "command": "workbench.action.quickOpenNavigatePrevious",
  66.         "when": "inQuickOpen"
  67.     },
  68.     {
  69.         "key": "shift+cmd+g",
  70.         "command": "workbench.view.scm"
  71. }
  72. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement