如何重新映射 CoC VIM 自动完成键?

How to remap CoC VIM autocomplete key?

我正在尝试将自动完成键从“Enter”键重新映射到“TAB”,因为当我打算转到下一行时,我一直在自动完成。下面的代码是 coc 的默认选项,我认为这是我应该能够重新映射密钥的地方。

" make <CR> auto-select the first completion item and notify coc.nvim to
" format on enter, <cr> could be remapped by other vim plugin
inoremap <silent><expr> <cr> pumvisible() ? coc#_select_confirm()
                              \: "\<c-g>u\<CR>\<c-r>=coc#on_enter()\<CR>"

我认为将开头的 更改为 会起作用。然而,虽然它确实允许我使用 TAB 自动完成,但在某些情况下它会创建奇怪的自动缩进。例如:

//normal behavior
someFunction(){
    //cursor here appropriately indented
}


//behavior after I made the changes mentioned above
someFunction(){
//cursor here}

我想我只是根本不了解 VIM 中的 coc 或重新映射键。

为什么我不能简单地将 更改为 ?我怎样才能将自动完成键从“Enter”重新映射到“TAB”?

我不太了解 vimscript,但我通过反复试验设法让一些东西工作。

默认设置:

inoremap <silent><expr> <cr> pumvisible() ? coc#_select_confirm()
                              \: "\<C-g>u\<CR>\<c-r>=coc#on_enter()\<CR>"

选项卡上的自动完成:

"This expression seems to be responsible for coc formatting on enter
inoremap <silent><expr> <cr> "\C-g>u\<CR>\<c-r>=coc#on_enter()\<CR>"
"I this just says autocomplete with the first option if pop up menu is open.
"If it is not open, just do a regular tab.
inoremap <silent><expr> <TAB> pumvisible() ? coc#select_confirm() : "\<C-g>u\<TAB>"