-
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 6 replies
-
I am also troubled by this problem these days. |
Beta Was this translation helpful? Give feedback.
-
From Readme |
Beta Was this translation helpful? Give feedback.
-
Or use inoremap <silent><expr> <TAB>
\ coc#pum#visible() ? coc#pum#insert():
\ <SID>check_back_space() ? "\<Tab>" :
\ coc#refresh()
inoremap <expr><S-TAB> coc#pum#visible() ? coc#pum#prev(1) : "\<C-h>" From coc.nvim 0.0.82, the default behavior changed to match the behavior of VSCode, while also makes preselect and selection features just work |
Beta Was this translation helpful? Give feedback.
-
Thanks! |
Beta Was this translation helpful? Give feedback.
From Readme