feat: use watchman's watch-project
if available
#390
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
If watchman is bersion 3.3 or later, use
watch-project
rather thanthe deprecated
watch
. The main advantage is eliminating redundantnested watches (i.e. where one is a subtree of another), which reduces
RAM and CPU usage in the
watchman
daemon and eliminates the indexingdelay when invoking Command-T after moving down the directory hierarchy.
Although
watch-project
was introduced in 3.1 it is awkward/inefficientto use without the
relative_root
query which was introduced in 3.3.3.3 was released in June 2015, so most users should have a newer version
but backward compatibility with older versions is maintained.
Fixes #389
Tested:
and various subdirectories, as well as other paths (/tmp).
watch
, which is unchanged from existing code.--version