Skip to content

Instantly share code, notes, and snippets.

@cellularmitosis
Created August 16, 2020 18:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cellularmitosis/22cab5480907b5f7108626a92fc0e574 to your computer and use it in GitHub Desktop.
Save cellularmitosis/22cab5480907b5f7108626a92fc0e574 to your computer and use it in GitHub Desktop.
VS Code configuration

Tab switching

I like to switch tabs using ctrl+[ and ctrl+]

Linux: ~/.config/Code/User/keybindings.json

[
    {
        "key": "ctrl+]",
        "command": "workbench.action.nextEditor"
    },
    {
        "key": "ctrl+[",
        "command": "workbench.action.previousEditor"
    }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment