You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
Open a project that contains a .git folder (this doesn't typically happen with Brackets since the .git folder is up in brackets-app, but if you include any extensions with a .git folder then you'll hit this)
Hit Ctrl+Shift+O
Result: the list will usually show lots of entries that are just big hex values, inside .git/objects/
Expected: filter out contents of .git folder
There's some Mac-specific code to hide dotfiles and dotfolder contents, but it's incomplete (e.g. Thumbs.db still gets listed) and doesn't run at all on Win.
It would be great if we could just share the code in ProjectManager._shouldShowInTree() for this. FileIndexManager._scanDirectoryRecurse() should call this code on folders to terminate the recursion early, and either it or _addFileToIndexes() should apply it to filter out files too.
The text was updated successfully, but these errors were encountered:
…ager's
existing file/folder filtering logic as a public API, and use it in
FileIndexManager too for consistency (which provides the file list for
Quick Open).
* origin/master: (21 commits)
Improve console output of LiveDevelopment errors
store and retrieve tree state for each project
Fix issue #1221 (Quick Open lists git metafiles) -- Expose ProjectManager's existing file/folder filtering logic as a public API, and use it in FileIndexManager too for consistency (which provides the file list for Quick Open).
Simplify the dialog creation as suggested by Glenn, but I use prependTo to keep the DOM structure the same as the original code.
fix typo
code review changes
wait for styles to load
Replace DOM manipulation code with equvilent jQuery api calls.
fix positioned menu dividers
Fix CodeMirror SHA
Fixing nested single quotes. Reverted to escaped nested doubles around single.
Updated quotes and syntax to fix errors
Fix some incorrect quotes
fix dirty dot layout
Update source to adhere to style guide for quotes. Fixes issue #1100.
fix name conflict
allow long file names to wrap lines
when file not found, remove it from working set
apply improvement to multiple file open
project switching performance changes for working set
...
Result: the list will usually show lots of entries that are just big hex values, inside .git/objects/
Expected: filter out contents of .git folder
There's some Mac-specific code to hide dotfiles and dotfolder contents, but it's incomplete (e.g. Thumbs.db still gets listed) and doesn't run at all on Win.
It would be great if we could just share the code in
ProjectManager._shouldShowInTree()
for this.FileIndexManager._scanDirectoryRecurse()
should call this code on folders to terminate the recursion early, and either it or_addFileToIndexes()
should apply it to filter out files too.The text was updated successfully, but these errors were encountered: