grep
grep copied to clipboard
Plugin to integrate Grep search tools with Vim
This feature works fine with your old plugin https://github.com/vim-scripts/findstr.vim as there /C: flag is used cleanly. Into current script even supplying this flag explicitly has issues of delivering all occurrences....
Hi, the plugin is great and solved a real problem fo me, because I use to edit dozens of files at the same time in several paths and it's hard...
When used with TagBar, https://github.com/majutsushi/tagbar: You do a search. The search list pops up in a new horizontal bottom split. You then close it `:cclose` and when you open it...
A quoted search expression, e.g. `:Ack "Error code"`, fails as follows: ``` || [Search results for '"Error'] zsh|1| unmatched " ``` Notice it is searching for `"Error` instead of `"Error...
Fixes https://github.com/yegappan/grep/issues/9 The (incomplete) patterns were shellescape()'d. Even if the full pattern were parsed by s:parseArgs(), it isn't necessary since the user is typing in an argument to a command...
See #10 s:parseArgs() incorrectly assumes that the first non-option argument is the entire search pattern. Vim's `` doesn't handle quotes like shell quoting does, unfortunately, making this assumption in s:parseArgs()...
I have to hack the code right now by changing "grep#runGrep" method to "grep#runGrepRecursive" which works fine, so please consider to update it, thanks. Origin: ``` command! -nargs=* -complete=file Rg...
In the combination Windows+Cygwin there exists a little issue with slashes and backslashes. You have programmed a search/replace from backslash to slash. That is ok but the replacement will be...