Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. In Visual Studio Code press Ctrl-K Ctrl-S to go to the keyboard bindings editor.
  2. Two windows open up - the default and the user keyboard bindings files.
  3.  
  4. In the user keyboard bindings on the right, enter the followin text:
  5.  
  6. // Place your key bindings in this file to overwrite the defaults
  7. [
  8. { "key": "ctrl+tab", "command": "workbench.action.nextEditor" },
  9. { "key": "ctrl+shift+tab", "command": "workbench.action.previousEditor" },
  10. { "key": "ctrl+pageup", "command": "workbench.action.openPreviousRecentlyUsedEditorInGroup" },
  11. { "key": "ctrl+pagedown", "command": "workbench.action.openNextRecentlyUsedEditorInGroup" }
  12. ]
  13.  
  14. Save the file and restart Visual Studio Code, and the
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement