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 Dec 13, 2018. It is now read-only.
Go into Settings and set a value for "Ignored Names". The file tree should fade out files that match that config in the same way that it fades out ignored version-control files.
The text was updated successfully, but these errors were encountered:
The index is built from git ls-files if it exists, and falls back to find if there's no repo. So the simplest way to ignore a directory is to add it to .gitignore for your project. See PathSetFactory.js for more details.
I tried filtering the results in the factory as part of the promise chain createPathSet uses, but since file search is on the server-end, it doesn't have direct access to atom configuration values e.g. through getConfigValueAsync().
To implement this, it looks like ignored paths would have to be passed through from the component to the NuclideSearchService, then to fileSearchForDirectory in the PathSearch provider. It's kind of a lot of places to make changes. Is there any other way to funnel the ignored directories config through to the file searcher?
Go into
Settings
and set a value for "Ignored Names". The file tree should fade out files that match that config in the same way that it fades out ignored version-control files.The text was updated successfully, but these errors were encountered: