From 80476ada61782b275edbe70d5782097686c9e521 Mon Sep 17 00:00:00 2001 From: ray Date: Wed, 26 Feb 2020 12:24:02 +0000 Subject: [PATCH] update bindings --- init.plugins.vim | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/init.plugins.vim b/init.plugins.vim index 71066e2..333bd23 100644 --- a/init.plugins.vim +++ b/init.plugins.vim @@ -35,11 +35,11 @@ let g:ale_sign_error = 'Α' let g:ale_sign_warning = 'α' - nmap gh (ale_hover) - nmap aa (ale_detail) + nmap aa (ale_hover) + nmap ad (ale_detail) nmap af (ale_fix) nmap ar (ale_find_references) - nmap ad (ale_go_to_definition) + nmap ag (ale_go_to_definition) nmap aD (ale_documentation) nmap an (ale_next) nmap ap (ale_previous) @@ -57,9 +57,10 @@ let g:coc_snippet_prev = '' " inoremap coc#refresh() - nnoremap gH :call CocAction('doHover') + nnoremap :call CocAction('doHover') + nnoremap cc :call CocAction('doHover') nnoremap cf :call CocAction('doQuickfix') - nnoremap cd :call CocAction('jumpDefinition') + nnoremap cg :call CocAction('jumpDefinition') nnoremap ci :call CocAction('jumpImplementation') nnoremap cr :call CocAction('jumpReferences') nnoremap cm :call CocAction('rename')