1
0

Compare commits

...

3 Commits

View File

@@ -59,13 +59,13 @@ endfunction
inoremap <silent><expr> <TAB> inoremap <silent><expr> <TAB>
\ coc#pum#visible() ? coc#pum#next(1) : \ coc#pum#visible() ? coc#pum#next(1) :
\ coc#expandableOrJumpable() ? "\<C-r>=coc#snippet#next()\<CR>" :
\ CheckBackspace() ? "\<Tab>" : \ CheckBackspace() ? "\<Tab>" :
\ coc#expandableOrJumpable() ? "\<C-r>=coc#snippet#next()\<CR>" :
\ coc#refresh() \ coc#refresh()
inoremap <silent><expr> <S-TAB> inoremap <silent><expr> <S-TAB>
\ coc#pum#visible() ? coc#pum#prev(1) : "\<C-h>" \ coc#pum#visible() ? coc#pum#prev(1) : "\<C-h>"
\ coc#expandableOrJumpable() ? "\<C-r>=coc#snippet#prev()\<CR>" :
\ CheckBackspace() ? "\<S-Tab>" : \ CheckBackspace() ? "\<S-Tab>" :
\ coc#expandableOrJumpable() ? "\<C-r>=coc#snippet#prev()\<CR>" :
\ coc#refresh() \ coc#refresh()
let g:coc_disable_startup_warning = 1 let g:coc_disable_startup_warning = 1
@@ -99,10 +99,6 @@ nmap <silent><nowait> gy <Plug>(coc-type-definition)
nmap <silent><nowait> gi <Plug>(coc-implementation) nmap <silent><nowait> gi <Plug>(coc-implementation)
nmap <silent><nowait> gr <Plug>(coc-references) nmap <silent><nowait> gr <Plug>(coc-references)
" Temporary!!! Remove after CoC update
let storage_file = stdpath('data') . '/coc-localstorage'
let g:coc_node_args = ['--localstorage-file=' . storage_file]
" syntax highlighting " syntax highlighting
syntax on syntax on
set background=dark set background=dark