ronakg / quickr-preview.vim

Quickly preview Quickfix results in vim without opening the file
57 stars 10 forks source link

Conflicted with quickfix-reflector plugin #17

Open markwu opened 5 years ago

markwu commented 5 years ago

I installed both https://github.com/stefandtw/quickfix-reflector.vim and https://github.com/ronakg/quickr-preview.vim plugins, I found when I grep and open quickfix window, I will get the following messages:

2019-02-07 8 23 45

I have no idea what's going on. The only way to get rid of the error messages is to comment the following line:

" autocmd BufDelete <buffer> pclose

And change the close qf mapping to

nnoremap <silent> <plug>(quickr_preview_qf_close) :cclose<CR>:lclose<CR>:pclose<CR>

if you could spare some time to investigate this issue, that will be great.

Thanks.

matt1003 commented 5 years ago

I have also been having problems with the BufDelete auto-command. Do you still have the issue if you change it to BufUnload instead?

markwu commented 5 years ago

Yes, even change to BufUnload, I still have the issue. Anyway, I already remove it.