lifepillar / vim-mucomplete

Chained completion that works the way you want!
MIT License
913 stars 18 forks source link

[MUcomplete] <cr> is already mapped (use `:verbose imap <cr>` to see by whom). See :help mucomplete-compatibility. #136

Closed steelbluelee closed 5 years ago

steelbluelee commented 5 years ago

I use Ultisnips with mucomplete. So I added the following lines in my init.vim

   inoremap <silent> <expr> <plug>MyCR
               \ mucomplete#ultisnips#expand_snippet("\<cr>")
   imap <cr> <plug>MyCR

It seems work well. But whenever I run nvim, I can see the follow error message.

[MUcomplete] <cr> is already mapped (use `:verbose imap <cr>` to see by whom). See :help mucomplete-compatibility.

Despite this error, mucomplete works well. expends snippet code well. When I run :imap after deleting these settings, I can see this message.

i  <CR>          <Plug>(MUcompleteCR)

How can I suppress this error message?

steelbluelee commented 5 years ago

This issue solved through upgrading neovim from 0.2.2 to 0.3.1