I'm getting following error inside vim
while using Ack
plugin:
[ No Name]
|| ack-grep: Command not found.
I have installed ack
vim-plugin at the path ~/.vim/bundle/ack.vim
. I have checked with :scriptnames
, it shows me proper path.
Added following entries to my .vimrc
file:
let g:ackprg="ack-grep -H --nocolor --nogroup --column"
nmap <leader>a <Esc>:Ack!
I'm still getting the error. Am I missing anything ?