Update Coc completion config after breaking change in plugin

This commit is contained in:
flyingscorpio@clevo 2022-08-01 10:37:17 +02:00
parent 4241528d6d
commit e3e9ad6b40

View file

@ -101,9 +101,10 @@ function! s:check_back_space() abort
return !col || getline('.')[col - 1] =~ '\s' return !col || getline('.')[col - 1] =~ '\s'
endfunction endfunction
inoremap <silent><expr> <TAB> inoremap <silent><expr> <TAB>
\ pumvisible() ? "\<C-n>" : \ coc#pum#visible() ? coc#pum#next(1):
\ <SID>check_back_space() ? "\<TAB>" : \ <SID>check_back_space() ? "\<TAB>" :
\ coc#refresh() \ coc#refresh()
inoremap <expr><S-TAB> coc#pum#prev(1) : "\<C-h>"
let g:ale_python_mypy_options = '--strict --strict-optional' let g:ale_python_mypy_options = '--strict --strict-optional'
let g:ale_linters_ignore = ['lacheck'] let g:ale_linters_ignore = ['lacheck']
@ -127,7 +128,7 @@ let g:vimtex_view_method = 'zathura'
let g:vimtex_quickfix_autoclose_after_keystrokes = 2 let g:vimtex_quickfix_autoclose_after_keystrokes = 2
let g:vimtex_quickfix_open_on_warning = 0 let g:vimtex_quickfix_open_on_warning = 0
let g:UltiSnipsExpandTrigger = '<S-tab>' let g:UltiSnipsExpandTrigger = '<C-tab>'
" }}} " }}}
" COLORS {{{ " COLORS {{{