From 46266b845feef8e92ad90bc7aae21fb0b2547489 Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Wed, 30 Jan 2019 22:52:07 +0100 Subject: [PATCH] Changed keybinds to new coc lists --- init.vim | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/init.vim b/init.vim index f3e1982..5f9ea8d 100644 --- a/init.vim +++ b/init.vim @@ -221,19 +221,19 @@ nmap f (coc-format-selected) command! -nargs=0 Format :call CocAction('format') " Shortcuts for denite interface " Show extension list -nnoremap e :Denite coc-extension +nnoremap e :CocList extensions " Show symbols of current buffer -nnoremap o :Denite coc-symbols +nnoremap o :CocList outline " Search symbols of current workspace -nnoremap t :Denite coc-workspace +nnoremap t :CocList symbols " Show diagnostics of current workspace -nnoremap a :Denite coc-diagnostic +nnoremap a :CocList diagnostics " Show available commands -nnoremap c :Denite coc-command +nnoremap c :CocList commands " Show available services -nnoremap s :Denite coc-service +nnoremap s :CocList services " Show links of current buffer -nnoremap l :Denite coc-link +nnoremap l :CocList link nmap gd (coc-definition) nmap gy (coc-type-definition) nmap gi (coc-implementation)