Open romgrk opened 4 years ago
I add following line to init.vim
to avoid conflict with vim-clap.
What the line does is to check buffer type
If it is nofile
which is for vim-clap buffer, then do nothing;
else enable completion for that buffer.
autocmd BufEnter * if &buftype != "nofile" | lua require'completion'.on_attach()
Hope this works for others
Thanks @BokilaLin , this worked great. The described problem happened for me with telescope.nvim after I added the buffers completion source which I wanted to be available in all (file) buffers.
I'm opening the issue regarding an issue that was observed in clap's input window. In some cases, something seems to be typing letters that are not wanted by the user.
Detailed report can be found here: https://github.com/liuchengxu/vim-clap/issues/580
It was observed that both users reporting the issue were using completion.nvim, and I was wondering if you'd have any insight as to why this could be happening.
Thanks.