mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
84 lines
2.7 KiB
VimL
84 lines
2.7 KiB
VimL
" pop-up (completion) menu mappings {{{
|
|
imap <silent><expr> <CR> pumvisible() ? "\<C-y>" : "\<Plug>delimitMateCR"
|
|
imap <silent><expr> <Esc> pumvisible() ? "\<C-e>" : "\<Esc>"
|
|
imap <silent><expr> <Tab> pumvisible() ? "\<C-n>" : "\<Tab>"
|
|
imap <silent><expr> <S-Tab> pumvisible() ? "\<C-p>" : "\<S-Tab>"
|
|
" }}}
|
|
|
|
if !g:vim_ide
|
|
function IsCocEnabled()
|
|
return 0
|
|
endfunction
|
|
finish
|
|
endif
|
|
|
|
" coc.nvim {{{
|
|
" list of filetypes (that are added in language-specific scripts) for which
|
|
" coc mappings are enabled
|
|
let g:coc_filetypes = []
|
|
|
|
function IsCocEnabled()
|
|
return index(g:coc_filetypes, &filetype) >= 0
|
|
endfunction
|
|
|
|
augroup vimrc-coc
|
|
autocmd!
|
|
autocmd FileType * if IsCocEnabled()
|
|
\|let &l:formatexpr = "CocAction('formatSelected')"
|
|
\|let &l:keywordprg = ":call CocAction('doHover')"
|
|
\|endif
|
|
autocmd User CocJumpPlaceholder call CocActionAsync('showSignatureHelp')
|
|
augroup end
|
|
|
|
" mappings {{{
|
|
let g:coc_snippet_next = '<Tab>'
|
|
let g:coc_snippet_prev = '<S-Tab>'
|
|
|
|
inoremap <silent><expr> <C-Space> coc#refresh()
|
|
|
|
nmap <silent> [c <Plug>(coc-diagnostic-prev)
|
|
nmap <silent> ]c <Plug>(coc-diagnostic-next)
|
|
|
|
nmap <silent> <space>gd <Plug>(coc-definition)
|
|
nmap <silent> <space>gt <Plug>(coc-type-definition)
|
|
nmap <silent> <space>gi <Plug>(coc-implementation)
|
|
nmap <silent> <space>gr <Plug>(coc-references)
|
|
nmap <silent> <F2> <Plug>(coc-rename)
|
|
nmap <silent> <A-CR> <Plug>(coc-codeaction)
|
|
vmap <silent> <A-CR> <Plug>(coc-codeaction-selected)
|
|
" nmap <silent> <leader>qf <Plug>(coc-fix-current)
|
|
|
|
nnoremap <silent> <space>l <Cmd>CocList<CR>
|
|
nnoremap <silent> <space>d <Cmd>CocList --auto-preview diagnostics<CR>
|
|
nnoremap <silent> <space>c <Cmd>CocList commands<CR>
|
|
nnoremap <silent> <space>o <Cmd>CocList --auto-preview outline<CR>
|
|
nnoremap <silent> <space>s <Cmd>CocList --interactive symbols<CR>
|
|
nnoremap <silent> <space>h <Cmd>CocPrev<CR>
|
|
nnoremap <silent> <space>k <Cmd>CocPrev<CR>
|
|
nnoremap <silent> <space>l <Cmd>CocNext<CR>
|
|
nnoremap <silent> <space>j <Cmd>CocNext<CR>
|
|
nnoremap <silent> <space>p <Cmd>CocListResume<CR>
|
|
" }}}
|
|
|
|
" CocFormat {{{
|
|
function s:CocFormat(range, line1, line2) abort
|
|
if a:range == 0
|
|
call CocAction('format')
|
|
else
|
|
call cursor(a:line1, 1)
|
|
normal! V
|
|
call cursor(a:line2, 1)
|
|
call CocAction('formatSelected', 'V')
|
|
endif
|
|
endfunction
|
|
command! -nargs=0 -range -bar CocFormat call s:CocFormat(<range>, <line1>, <line2>)
|
|
" }}}
|
|
|
|
call coc#add_extension('coc-snippets')
|
|
call coc#config('diagnostic', {
|
|
\ 'virtualText': v:true,
|
|
\ 'enableMessage': 'jump',
|
|
\ 'errorSign': 'XX',
|
|
\ 'warningSign': '!!',
|
|
\ })
|
|
" }}}
|