fix esc for fzf buffers:

This commit is contained in:
Robert Altner 2024-04-24 11:13:20 +02:00
parent 0f124055d2
commit 8e5abaf841
No known key found for this signature in database
GPG key ID: 58794C52DAF9EAD8

View file

@ -27,6 +27,9 @@ let g:startify_change_to_vcs_root = 1
inoremap <silent><expr> <UP> coc#pum#visible() ? coc#pum#prev(1) : "" inoremap <silent><expr> <UP> coc#pum#visible() ? coc#pum#prev(1) : ""
inoremap <silent><expr> <DOWN> coc#pum#visible() ? coc#pum#next(1) : "" inoremap <silent><expr> <DOWN> coc#pum#visible() ? coc#pum#next(1) : ""
"Fix escape sending user to normal mode in fzf buffers
autocmd FileType fzf tnoremap <buffer><silent><ESC> <ESC>
inoremap <silent><expr> <TAB> inoremap <silent><expr> <TAB>
\ coc#pum#visible() ? coc#_select_confirm() : \ coc#pum#visible() ? coc#_select_confirm() :
\ coc#expandableOrJumpable() ? "\<C-r>=coc#rpc#request('doKeymap', ['snippets-expand-jump',''])\<CR>" : \ coc#expandableOrJumpable() ? "\<C-r>=coc#rpc#request('doKeymap', ['snippets-expand-jump',''])\<CR>" :