-
-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
slow-running queries #400
Comments
Hey @iburunat, i just had the same issue. I went digging and for me the issue was that Lines 989 to 996 in c16d7a7
My first attempt was to just use Ripgrep, because that rewrite isn't done for Ripgrep as mentioned in the README: Lines 279 to 285 in c16d7a7
However i failed to get My next idea was to convince This is extremely hacky but in the absence of a knob to tweak helm-ag's behaviour, this seemed the easiest way to unblock myself. Hope it helps you! Here's my final (use-package helm-ag
:config
(setq helm-ag--command-features '(re2 ag))
(defun helm-ag--set-command-features ()
"Intentional no-op.")) |
When running
helm-do-ag
on a folder with many org files (~5k files, not code, but text), I am experiencing long retrieval times (in the order of 4 minutes).Usually it retrieves one result very quickly. After 4-5 minutes I see the rest.
Is this behaviour normal?
Thanks for your feedback!
The text was updated successfully, but these errors were encountered: