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
pick must read its input entirely before the filtering interface becomes responsive. For an example, in a directory with a large number of entries (say > 150,000), compare find . -type f | pick, which will take at least seconds to become responsive, and find . -type f | less, which is immediately responsive. fzf is one example of a fuzzy finder that handles this well by searching over entries received so far and streaming in new entries as they match.
The text was updated successfully, but these errors were encountered:
pick must read its input entirely before the filtering interface becomes responsive. For an example, in a directory with a large number of entries (say > 150,000), compare
find . -type f | pick
, which will take at least seconds to become responsive, andfind . -type f | less
, which is immediately responsive. fzf is one example of a fuzzy finder that handles this well by searching over entries received so far and streaming in new entries as they match.The text was updated successfully, but these errors were encountered: