Last active
December 18, 2022 15:19
-
-
Save benja/77e88313b518a19e57f35041cf50ce5d to your computer and use it in GitHub Desktop.
Visual Studio Code — Exclude .gitignore files on command
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"key": "shift+cmd+[Period]", | |
"command": "settings.cycle.explorer.excludeGitIgnore" | |
}, | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"settings.cycle": [ | |
{ | |
"id": "explorer.excludeGitIgnore", | |
"values": [ | |
{ | |
"explorer.excludeGitIgnore": true | |
}, | |
{ | |
"explorer.excludeGitIgnore": false | |
} | |
] | |
} | |
], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Make sure no other keybind is occupying shift+cmd+[Period]. The "focus breadcrumbs" should by default (IIRC), so make sure to remove that.