rking / ag.vim

Vim plugin for the_silver_searcher, 'ag', a replacement for the Perl module / CLI script 'ack'
1.74k stars 131 forks source link

Error in README #56

Open Cemenyave opened 10 years ago

Cemenyave commented 10 years ago

There is an error In "Configuration" section. You should use ' instead of " because vims parser corrupts path, which you specify in "" but keeps untuched specified in ''.

Repoduced 10/10 with gVim on windows 7.

I know, its very minor bug, but anyway.

losingkeys commented 10 years ago

You mean

let g:agprg="<custom-ag-path-goes-here> --column"

Should be

let g:agprg='<custom-ag-path-goes-here> --column'

?

I think it works either way, but I'll try both before closing or making any changes. Thanks for the bug report! :)