quickr-preview.vim icon indicating copy to clipboard operation
quickr-preview.vim copied to clipboard

autocmd BufDelete error

Open shizhai opened this issue 5 years ago • 3 comments

while search simbol with quickr_cscope, the quickr_preview whill show the messege as flowings:

"[Quickfix List]" line 1 of 5 --20%-- col 1 Error detected while processing BufDelete Autocommands for "<buffer=5>": E788: Not allowed to edit another buffer now Press ENTER or type command to continue

And then, I could noly select the first items in quickr_preview

system: Ubuntu 16.04.6 LTS \n \l vim: compile with newest vim code(v8.1)

shizhai avatar Aug 25 '19 07:08 shizhai

Same situation with 'mhinz/vim-grepper'

yutkat avatar Apr 02 '20 10:04 yutkat

This is minimal vimrc.

And you should input :Grepper -query 'some keyword'

syntax on
filetype plugin indent on

if has('vim_starting')
  let s:pluin_manager_dir='~/.vim/plugged/vim-plug'
  execute 'set runtimepath+=' . s:pluin_manager_dir
endif

call plug#begin('~/.vim/plugged')
Plug 'ronakg/quickr-preview.vim'
Plug 'mhinz/vim-grepper'
call plug#end()

augroup MyQf
  autocmd!
  autocmd FileType qf set nobuflisted
augroup END

yutkat avatar Apr 02 '20 14:04 yutkat

E788 error should be fixed by #26

ketkulka avatar Mar 12 '21 20:03 ketkulka