vim-grepper
vim-grepper copied to clipboard
:space_invader: Helps you win at grep.
# Reproduce Given: 3 files containing the same content. Open one of the files and run the following command: ``` :Grepper -tool rg -buffer -noprompt -query hello ``` Result: >...
Hi, First, thanks for vim-grepper, this is a great plugin. The prompt is brilliant, and neatly fixes the problem of having to manually escape `#` and friends when searching. One...
NVIM version: v0.6.1 vim-grepper version: 2b93535752ffcb312f9fab73d90e80dc9f2e60fc OS: Mac 12.3.1 git: 2.33.0 I've been using this option for a while but I've noticed it's stopped working recently: ``` noremap :Grepper -cword...
With ```vim let g:grepper.prompt_quote = 2 ``` under Windows 10, no results are found. That is, if the search term is surrounded by single quotes, then, under Windows 10, no...
addresses https://github.com/mhinz/vim-grepper/issues/224
Hello, Thank you for the amazing plugin, I was using it as my daily search tool for over 5 mounts now, and was working great. I'm using different tools in...
win32 does not necessarily mean `cmd.exe` as well as others does not mean `sh`. Problem is, that previous functions, like s:escape_cword() do respect `shell` e.g. with `shellescape()`, but passing the...
I know we can pass the `$*`(the grep text) to `grepprg`, but can we also specify the root-directory I want to grep from? i.e. ```vim let g:grepper = { \...
Config: ```javascript let g:grepper = { \ 'grep': { \ 'grepprg': 'grep -Rn $* .' \ }, \ 'grepI': { \ 'grepprg': 'grep -Rni $* .' \ }, \ 'grepFile':...
Grepper works well with folder: ```bash :Grepper -tool grep -noprompt -quickfix -highlight -grepprg grep -n -i name ./src ``` While works bad with file: ```bash :Grepper -tool grep -noprompt -quickfix...