I am on Windows and use git-bash. I have vim (the default one that comes with git-bash) with several plugins installed via vim-plug.
When I use :Ag ...
to search through the files in a project - I get this result panel:
But no matter what I try - I can't open the file with the result I want.
What should be the correct key shortcut(s) or combination so that I can open the file with the result I want?
EDIT:
This is what I added in my ~/.vimrc
file in order to make :Ag
command work:
" Ag/Ack related ..
let g:ackprg = 'ag'
let g:ack_default_options = " --case-sensitive --noheading --nopager --nocolor --nogroup --column"
So probably the issue is related to some of these props?