sublime-gitignorer
sublime-gitignorer copied to clipboard
Sublime plugin that excludes from your Sublime project any files ignored by git
The version delivered by Package Control is out of sync with this repo. eg: #18 has been fixed, but the Package Control version still suffers from it.
After installation it worked until sublime restart. Now I get error: ``` Traceback (most recent call last): File "/opt/sublime_text_3/sublime_plugin.py", line 74, in reload_plugin m = importlib.import_module(modulename) File "./importlib/__init__.py", line 90,...
 Here's my updated settings: ``` json { "extra_file_exclude_patterns": [ "*.pyc", "*.pyo", "*.exe", "*.dll", "*.obj", "*.o", "*.a", "*.lib", "*.so", "*.dylib", "*.ncb", "*.sdf", "*.suo",...
Presently the plugin just spawns a daemon thread that checks every 5 seconds what files and folders should be ignored and shoves them into the appropriate setting in the preferences...
Fixes #6 using @evenfrost's suggested method. Side effect is that the icon of ignored files will appear as the binary icon in the sidebar by default, but will show the...
The plugin is completely broken for me. My system: OS X 10.10.5 Sublime Text 3 build 3095 Installed through Package Control Here's the traceback from the console: ``` Traceback (most...
Sometimes I want to see my gitignored files, being able to toggle the plugin is a good feature.
[Somebody on Stack Overflow says](http://stackoverflow.com/questions/18482976/tell-sublime-text-to-ignore-everything-in-gitignore/26372261?noredirect=1#comment47266934_26372261): > Gave your package a shot, and it brought down Sublime pretty quickly, with tons of "number of files to index exceeds sanity limit, bailing...
### 1. Summary In my sidebar not ignoring files into my `.gitignore` templates. ### 2. Expected behavior Package description: > Sublime plugin that excludes from your Sublime project any files...
Related to #14 I'd love to see a shortcut / menu option to manually trigger the ignorer to update my preferences, e.g. whenever I change projects/workspaces.