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
Because ag use --ignore PATTERN to Ignore files/directories whose names match this pattern. Literal file and directory names are also allowed.
But, when use with rg, we have to hard-code following function to support it.
e.g.
(defunhelm-ag--construct-ignore-option (pattern)
"Not documented, PATTERN."
(concat "--glob=" pattern)) ;; => we have to change `--ignore` to `--glob=` to support rg;; now, rg can work with ignore pattern.'(helm-ag-ignore-patterns '("!*~""!#*#""!*.min.*""!TAGS""!tags""!.git/"))
The text was updated successfully, but these errors were encountered:
@zw963 You might be interested in the thread at #16200, which might provide you some useful info.
Check it out and see if it helps. Just updating helm-ag fixed it for me.
Because ag use
--ignore PATTERN
to Ignore files/directories whose names match this pattern. Literal file and directory names are also allowed.But, when use with rg, we have to hard-code following function to support it.
e.g.
The text was updated successfully, but these errors were encountered: