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
|| /bin/bash: ack-grep: command not found after running :Ack anything
|| /bin/bash: ack-grep: command not found
:Ack anything
I have run sudo apt-get install ack-grep, and also ack, and ran sudo dpkg-divert --local --divert /usr/bin/ack --rename --add /usr/bin/ack-grep
sudo dpkg-divert --local --divert /usr/bin/ack --rename --add /usr/bin/ack-grep
The text was updated successfully, but these errors were encountered:
I tried this and it work for me: sudo ln -s /usr/bin/ack /usr/bin/ack-grep But before do a whereis ack to be sure it is the same location.
sudo ln -s /usr/bin/ack /usr/bin/ack-grep
Sorry, something went wrong.
Another way to solve this is to map the command that plugin is using to ack:
ack
let g:ackprg="ack -H --nocolor --nogroup --column"
No branches or pull requests
|| /bin/bash: ack-grep: command not found
after running
:Ack anything
I have run sudo apt-get install ack-grep, and also ack, and ran
sudo dpkg-divert --local --divert /usr/bin/ack --rename --add /usr/bin/ack-grep
The text was updated successfully, but these errors were encountered: