Gitignored File Excluder
Sublime plugin that excludes from your Sublime project any files ignored by git
Details
Installs
- Total 12K
- Win 3K
- Mac 6K
- Linux 3K
Aug 19 | Aug 18 | Aug 17 | Aug 16 | Aug 15 | Aug 14 | Aug 13 | Aug 12 | Aug 11 | Aug 10 | Aug 9 | Aug 8 | Aug 7 | Aug 6 | Aug 5 | Aug 4 | Aug 3 | Aug 2 | Aug 1 | Jul 31 | Jul 30 | Jul 29 | Jul 28 | Jul 27 | Jul 26 | Jul 25 | Jul 24 | Jul 23 | Jul 22 | Jul 21 | Jul 20 | Jul 19 | Jul 18 | Jul 17 | Jul 16 | Jul 15 | Jul 14 | Jul 13 | Jul 12 | Jul 11 | Jul 10 | Jul 9 | Jul 8 | Jul 7 | Jul 6 | Jul 5 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 3 | 0 | 0 | 0 | 0 | 0 | 2 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 2 | 0 | 0 | 0 | 0 | 1 | 0 | 2 | 0 | 1 |
Linux | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 2 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 |
Readme
- Source
- raw.githubusercontent.com
sublime-gitignorer
Sublime plugin that excludes from your Sublime project any files ignored by git.
Created as a solution to http://stackoverflow.com/questions/18482976/tell-sublime-text-to-ignore-everything-in-gitignore
Usage instructions:
- Install the plugin via Package Control by following these steps:
- Press CTRL+SHIFT+P (CMD+SHIFT+P on Mac)
- Select “Install Package”
- Search for the Gitignored File Excluder and press Enter.
sublime-gitignorer
will regularly check all your open folders for files that are ignored by Git and update your"file_exclude_patterns"
and"folder_exclude_patterns"
settings in Sublime to match the list of files and folders ignored by Git.- After you create a new Git-ignored file or update your
.gitignore
files, the files should be hidden from your project within 5 seconds. - Since the
"file_exclude_patterns"
and"folder_exclude_patterns"
settings are now being managed programatically, if you want to manually set file or folder exclusion patterns in sublime, you can use the"extra_file_exclude_patterns"
and"extra_folder_exclude_patterns"
settings. Any file paths you list in here will automatically be included in your"file_exclude_patterns"
and"folder_exclude_patterns"
in addition to Git-ignored paths. - If you already have
"file_exclude_patterns"
or"folder_exclude_patterns"
set, there is no need to back them up prior to installing this plugin; they will be automatically migrated to the"extra_file_exclude_patterns"
and"extra_folder_exclude_patterns"
settings on first launch.
Currently tested on Ubuntu and Windows in Sublime Text 2 and Sublime Text 3. I haven't tested on Mac yet but it should work there too.