When using counsel-find-file-occur, I don't get any results when using ivy--regex-fuzzy.
If I search for just o, it attempts to run:
ls | grep -i -E '\(o\)' | xargs ls
and on macOS at least, the escaped parens are unnecessary/do not work. This does:
ls | grep -i -E '(o)' | xargs ls
as does:
ls | grep -i -e '\(o\)' | xargs ls
Is this a BSD issue?
When using
counsel-find-file-occur, I don't get any results when usingivy--regex-fuzzy.If I search for just
o, it attempts to run:and on macOS at least, the escaped parens are unnecessary/do not work. This does:
as does:
Is this a BSD issue?