Raimondi / delimitMate

Vim plugin, provides insert mode auto-completion for quotes, parens, brackets, etc.
http://www.vim.org/scripts/script.php?script_id=2754
1.98k stars 116 forks source link

Clash with COC auto import #301

Open eyaleizenberg opened 2 years ago

eyaleizenberg commented 2 years ago

I use use COC and Delimitmate. In order to use the auto import of COC, you need to add something like this to your init.vim inoremap <expr> <cr> pumvisible() ? "\<C-y>" : "\<C-g>u\<CR>" This allows you to use ENTER to select the currently highlighted item and to auto import it. However, this configuration overrides Delimitmate’s expand on CR…

Suggestions?