2020-05-07 04:20:54 +00:00
|
|
|
set hidden
|
|
|
|
set nobackup
|
|
|
|
set nowritebackup
|
|
|
|
|
|
|
|
set cmdheight=2
|
|
|
|
set shortmess+=c
|
|
|
|
set signcolumn=yes
|
|
|
|
|
2020-05-07 17:43:25 +00:00
|
|
|
set statusline^=%{coc#status()}%{get(b:,'coc_current_function','')}
|
2020-05-07 04:20:54 +00:00
|
|
|
|
|
|
|
function! s:show_documentation()
|
|
|
|
if (index(['vim','help'], &filetype) >= 0)
|
|
|
|
execute 'h '.expand('<cword>')
|
|
|
|
else
|
|
|
|
call CocAction('doHover')
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" Binds
|
|
|
|
nnoremap <silent> K :call <SID>show_documentation()<CR>
|
2020-05-07 17:43:25 +00:00
|
|
|
nnoremap <silent> <space>a :<C-u>CocList diagnostics<cr>
|
|
|
|
nnoremap <silent> <space>e :<C-u>CocList extensions<cr>
|
|
|
|
nnoremap <silent> <space>c :<C-u>CocList commands<cr>
|
|
|
|
nnoremap <silent> <space>o :<C-u>CocList outline<cr>
|
|
|
|
nnoremap <silent> <space>s :<C-u>CocList -I symbols<cr>
|
|
|
|
nnoremap <silent> <space>j :<C-u>CocNext<CR>
|
|
|
|
nnoremap <silent> <space>k :<C-u>CocPrev<CR>
|
|
|
|
nnoremap <silent> <space>p :<C-u>CocListResume<CR>
|
|
|
|
|
|
|
|
nmap <silent> [g <Plug>(coc-diagnostic-prev)
|
|
|
|
nmap <silent> ]g <Plug>(coc-diagnostic-next)
|
|
|
|
nmap <silent> gd <Plug>(coc-definition)
|
|
|
|
nmap <silent> gy <Plug>(coc-type-definition)
|
|
|
|
nmap <silent> gi <Plug>(coc-implementation)
|
|
|
|
nmap <silent> gr <Plug>(coc-references)
|
|
|
|
nmap <leader>rn <Plug>(coc-rename)
|
|
|
|
nmap <leader>f <Plug>(coc-format-selected)
|
|
|
|
|
|
|
|
xmap <leader>f <Plug>(coc-format-selected)
|
|
|
|
|
|
|
|
inoremap <silent><expr> <c-space> coc#refresh()
|