nvim: Do not append results in vim grepper

This setting results in the quickfix list having the same result
multiple times if by mistake we run the same search again.

Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
This commit is contained in:
Sanchayan Maity 2020-04-04 13:04:13 +05:30
parent 559013e491
commit cccce84de4

View file

@ -726,7 +726,7 @@ let g:grepper.quickfix = 1
let g:grepper.buffer = 0
let g:grepper.buffers = 0
let g:grepper.switch = 0
let g:grepper.append = 1
let g:grepper.append = 0
let g:grepper.prompt = 0
" ----------------------------- Functions ------------------------------------