Update Coc completion config after breaking change in plugin
This commit is contained in:
parent
4241528d6d
commit
e3e9ad6b40
1 changed files with 3 additions and 2 deletions
|
@ -101,9 +101,10 @@ function! s:check_back_space() abort
|
|||
return !col || getline('.')[col - 1] =~ '\s'
|
||||
endfunction
|
||||
inoremap <silent><expr> <TAB>
|
||||
\ pumvisible() ? "\<C-n>" :
|
||||
\ coc#pum#visible() ? coc#pum#next(1):
|
||||
\ <SID>check_back_space() ? "\<TAB>" :
|
||||
\ coc#refresh()
|
||||
inoremap <expr><S-TAB> coc#pum#prev(1) : "\<C-h>"
|
||||
|
||||
let g:ale_python_mypy_options = '--strict --strict-optional'
|
||||
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_open_on_warning = 0
|
||||
|
||||
let g:UltiSnipsExpandTrigger = '<S-tab>'
|
||||
let g:UltiSnipsExpandTrigger = '<C-tab>'
|
||||
|
||||
" }}}
|
||||
" COLORS {{{
|
||||
|
|
Loading…
Add table
Reference in a new issue