We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Thanks for reporting a bug/feature request! Make sure you include:
On my machine, the output of ag --version is: nothing - I do not have ag installed.
ag --version
ag
My Emacs version is: 28.0.50
I'm using: Fedora 33.
The Configuration doc contains a function to set the Emacs exec-path from the shell PATH. That function tries to invoke the shell using
exec-path
(shell-command-to-string "$SHELL --login -i -c 'echo $PATH'")
The -i is wrong: it causes the plumbing of the output to fail with
-i
"bash: cannot set terminal process group (-1): Inappropriate ioctl for device bash: no job control in this shel ... path follows ...
confusing the subsequent parsing and screwing up both the env PATH and the exec-path. Without the -i, everything works as it should.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thanks for reporting a bug/feature request! Make sure you include:
On my machine, the output of
ag --version
is: nothing - I do not haveag
installed.My Emacs version is: 28.0.50
I'm using: Fedora 33.
The Configuration doc contains a function to set the Emacs
exec-path
from the shell PATH. That function tries to invoke the shell usingThe
-i
is wrong: it causes the plumbing of the output to fail withconfusing the subsequent parsing and screwing up both the env PATH and the
exec-path
. Without the-i
, everything works as it should.The text was updated successfully, but these errors were encountered: