Skip to content

Instantly share code, notes, and snippets.

@gardner
Created May 2, 2020 03:24
Show Gist options
  • Save gardner/cd06a2bc9a2dadb5156e1a3f03e4cc11 to your computer and use it in GitHub Desktop.
Save gardner/cd06a2bc9a2dadb5156e1a3f03e4cc11 to your computer and use it in GitHub Desktop.
fix vscode terrible defaults

Disable GitLense writes authors names inline code Ctrl+Shift+P, enter "GitLense: Open Settings" Uncheck "Git Code Lens"

https://stackoverflow.com/questions/38957302/is-there-a-quick-change-tabs-function-in-visual-studio-code Ctrl+Shift+P, enter "Preferences: Open Keyboard Shortcuts (JSON)" Add

// Place your key bindings in this file to override the defaults
[
    {
        "key": "ctrl+tab",
        "command": "workbench.action.nextEditorInGroup"
    },
    {
        "key": "ctrl+shift+tab",
        "command": "workbench.action.previousEditorInGroup"
    }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment