Josh Hoff
Josh Hoff
It looks like there never was a `LICENSE` file, even from the ack.vim days. Looks like ack.vim [has since adopted vim's license](https://github.com/mileszs/ack.vim/blob/master/LICENSE). Not sure what to do here, as I...
You might need to open a new command prompt for path changes to take affect. So the command works outside of vim?
Wouldn't this be as simple as using the [location-list](http://vimdoc.sourceforge.net/htmldoc/quickfix.html#location-list) instead of the (default) error list? Also, [`:help quickfix-error-lists`](http://vimdoc.sourceforge.net/htmldoc/quickfix.html#quickfix-error-lists) seems like it might be useful here.
Hmm... it looks like there are multiple lists... but we'd have to remember which windows corresponded to each list and do something like [`:colder`](http://vimdoc.sourceforge.net/htmldoc/quickfix.html#:colder) when switching windows, and that would...
I'm confused as to why this works: https://github.com/joshuarh/ag.vim/commit/a0e425828082b997d4f15cade00f34068eb5bb21. Aren't I still in the quickfix window when the mapping uses `zv`? If so, shouldn't it try that command on the (not...
Yeah, that's what I thought... but https://github.com/joshuarh/ag.vim/commit/a0e425828082b997d4f15cade00f34068eb5bb21 seems to work fine. So `zv` works anywhere in a mapping for all movements that mapping might make?
Hmm, I'll move them around then. They do work though, which is odd. I put the space there because I thought it needed to be there to separate the normal...
That said, it's cleaner to just put it in front if it works. What do you think about just leaving it there?
I'm not sure if those mappings can be set per-buffer, but I'll check that. Another thing to note that is if you do something like: ``` viml let g:ag_qhandler="copen 20"...
I've been thinking about this too. I wonder if there's a location/quickfix list option list for this or if we can truncate the matches before they end up in those...