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
Running the following (in a directory where at least one file contains foo): emacs -Q -f package-initialize --eval '(setq process-connection-type nil)' --eval '(ag "foo" default-directory)'
returns results without the "filename:" part, e.g.
ag --nocolor --literal --line-number --smart-case --nogroup --column --stats -- foo .
2:27:
3:15:
4:15: <!ATTLIST food id CDATA #IMPLIED
whereas when setting p-c-t to t, I get:
ag --nocolor --literal --line-number --smart-case --nogroup --column --stats -- foo .
code-samples/ajax/xml/ex.dtd:2:27:
code-samples/ajax/xml/ex.dtd:3:15:
code-samples/ajax/xml/ex.dtd:4:15: <!ATTLIST food id CDATA #IMPLIED
Running the following (in a directory where at least one file contains foo):
emacs -Q -f package-initialize --eval '(setq process-connection-type nil)' --eval '(ag "foo" default-directory)'
returns results without the "filename:" part, e.g.
whereas when setting p-c-t to t, I get:
On my machine, the output of
ag --version
is:My Emacs version is: GNU Emacs 26.1.90
I'm using: Trisquel GNU/Linux 8.0, Flidas
One workaround is to redirect stdin to /dev/null:
inside
ag/search
, but I'm not sure this is the right fix.The other obvious workaround is to not set
p-c-t
tonil
, but this consequences as well, see https://debbugs.gnu.org/cgi/bugreport.cgi?bug=15695The text was updated successfully, but these errors were encountered: