ack.vim
ack.vim copied to clipboard
Vim plugin for the Perl module / CLI script 'ack'
Things get weird when I search with NERDTree open and then open one of the results in a split: 
I have `let g:ackhighlight = 1` in my vimrc. After `Ack xxx`, the last cmd in history list is `let &hlsearch=1 | echo`.
I was setting up my vimrc on a different machine. I moved over all my plugins and git pulled(updated) them. I then tried using ack and it didn't work. It...
If there are no *.txt files in one of the doc directories, the ack command errors out. Globbing for those files while generating the file list fixes the issue. I've...
As discussed in https://github.com/mileszs/ack.vim/pull/171, this PR only fixes a bug with `:AckWindow` and `:AckHelp`. Basically, if an argument was not given, the command doesn't take the word under the cursor,...
In some projects I would be able to exclude some files and folders from ack request. After I read your documentation I think that this change is good option to...
When `g:ack_autofold_results` is enabled, it overrides the folding in all buffers not just the quickfix window.
I liked the preview ability but didn't like how it took over my main window. With this change, if you have `let g:ackpreview = 2`, it will show it in...
To prevent messing up user settings, disable it for good. To preserve this functionality, how about adding the following to `plugin/ack.vim` ? ``` autocmd BufReadPost quickfix call s:qfEnter() autocmd WinLeave...
add config variable 'ack_root_markers' to set search root path