This repository has been archived on 2021-12-21. You can view files and clone it, but cannot push or open issues/pull-requests.
2020-08-08 20:27:01 +02:00
|
|
|
function! s:check_back_space() abort
|
|
|
|
let col = col('.') - 1
|
|
|
|
return !col || getline('.')[col - 1] =~ '\s'
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
inoremap <silent><expr> <Tab>
|
|
|
|
\ pumvisible() ? "\<C-n>" :
|
|
|
|
\ <SID>check_back_space() ? "\<Tab>" :
|
|
|
|
\ coc#refresh()
|
|
|
|
|
|
|
|
" Navigating through results list
|
|
|
|
" Tab to select next result
|
|
|
|
inoremap <expr> <Tab> pumvisible() ? "\<C-n>" : "\<Tab>"
|
|
|
|
" Shift+Tab to select previous
|
|
|
|
inoremap <expr> <S-Tab> pumvisible() ? "\<C-p>" : "\<S-Tab>"
|
|
|
|
" Use enter to confirm completion
|
|
|
|
inoremap <expr> <cr> pumvisible() ? "\<C-y>" : "\<C-g>u\<CR>"
|
|
|
|
" Select first option if no option is selected on enter
|
|
|
|
inoremap <silent><expr> <cr> pumvisible() ? coc#_select_confirm() : "\<C-g>u\<CR>"
|
2020-08-20 14:29:03 +02:00
|
|
|
|
|
|
|
" Project refactoring keybinding
|
|
|
|
nnoremap <silent> <leader>pwr :CocSearch <C-R>=expand("<cword>")<CR><CR>
|