ag icon indicating copy to clipboard operation
ag copied to clipboard

vim plugin to search using the silver searcher (ag)

Results 5 ag issues
Sort by recently updated
recently updated
newest added

There is the following code in plugin/ag.vim: ``` if exists('*setqftitle') call setqftitle('ag' . args) endif ``` I wondered where it might come from, and then found a mailing list thread...

Ref: https://github.com/ervandew/ag/issues/3#ref-commit-9a1746b This could maybe wait until it gets merged, but I had it laying around (using try/catch), and wanted to submit it.

There is ack.vim [1], which can be easily used with "ag", too. There is ag.vim [2], a fork of ack.vim, defaulting to "ag". And there is "ag", which I just...

It would be useful if the plugin would set the search register (`@/`) automatically after searching. What do you think? There should probably be an option for this (off by...

That would probably only require to use `lexpr` instead of `cexpr` and the same for `copen`/`lopen` etc. There might be a global var to control this, and additional commands `Agl`...