Advertisement
UocXLhefENcxJWtIOW92

//Vim_key_bindings_vscode

Feb 1st, 2020
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.50 KB | None | 0 0
  1. // Place your key bindings in this file to override the defaults
  2. [
  3. {"key": "ctrl+shift+l","command": "workbench.action.navigateRight"},
  4. {"key": "ctrl+shift+h","command": "workbench.action.navigateLeft"},
  5. {"key": "ctrl+shift+j","command": "workbench.action.navigateDown"},
  6. {"key": "ctrl+shift+k","command": "workbench.action.navigateUp"},
  7. {"key": "ctrl+u","command": "workbench.action.joinTwoGroups"},
  8. {"key": "ctrl+i","command": "workbench.action.splitEditorRight"},
  9. {"key": "ctrl+o","command": "workbench.action.quickOpen"},
  10. {"key": "ctrl+p", "command":"editor.action.openDeclarationToTheSide"},
  11. {"key": "ctrl+[", "command":"editor.action.goToDeclaration"},
  12. {"key": "ctrl+shift+[", "command":"workbench.action.navigateBack"},
  13. {"key": "ctrl+shift+p","command": "workbench.action.closeActiveEditor"},
  14.  {"key": "ctrl+s", "command": "macros.closeAndExitInsertMode" },
  15. {
  16.    "key": "ctrl+b",
  17.    "when": "!sideBarFocus",
  18.    "command": "workbench.action.focusSideBar"
  19.  },
  20.  {
  21.    "key": "ctrl+b",
  22.    "when": "sideBarFocus",
  23.    "command": "workbench.action.focusActiveEditorGroup" },
  24.    {
  25.      "key": "ctrl+k",
  26.      "command": "cursorPageUp", "when": "textInputFocus"
  27.    },
  28. {
  29.    "key": "ctrl+j",
  30.    "command": "cursorPageDown",
  31.    "when": "textInputFocus"
  32.  },{
  33.    "key": "ctrl+shift+'",
  34.    "command": "editor.action.marker.prev",
  35.    "when": "editorTextFocus && !editorReadonly"
  36.  },
  37.   {
  38.    "key": "ctrl+'",
  39.    "command": "editor.action.marker.next",
  40.    "when": "editorTextFocus && !editorReadonly"
  41.  }
  42. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement