mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
[nvim] Add new required coc keybinds
This commit is contained in:
parent
3730b40d25
commit
b27bb07d9d
1 changed files with 15 additions and 0 deletions
|
@ -1,5 +1,20 @@
|
||||||
nnoremap <C-t> :NERDTreeToggle<CR>
|
nnoremap <C-t> :NERDTreeToggle<CR>
|
||||||
|
|
||||||
|
" Completion {{{
|
||||||
|
function! s:check_back_space() abort
|
||||||
|
let col = col('.') - 1
|
||||||
|
return !col || getline('.')[col - 1] =~ '\s'
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
inoremap <expr> <cr> coc#pum#visible() ? coc#_select_confirm() : "\<CR>"
|
||||||
|
|
||||||
|
inoremap <silent><expr> <TAB>
|
||||||
|
\ coc#pum#visible() ? coc#pum#next(1):
|
||||||
|
\ <SID>check_back_space() ? "\<Tab>" :
|
||||||
|
\ coc#refresh()
|
||||||
|
inoremap <expr><S-TAB> coc#pum#visible() ? coc#pum#prev(1) : "\<C-h>"
|
||||||
|
" }}}
|
||||||
|
|
||||||
" Copy to clipboard register and paste from clipboard register {{{
|
" Copy to clipboard register and paste from clipboard register {{{
|
||||||
" Taken from https://unix.stackexchange.com/a/23437
|
" Taken from https://unix.stackexchange.com/a/23437
|
||||||
nnoremap <C-y> "+y
|
nnoremap <C-y> "+y
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue