diff --git a/init.vim b/init.vim index 4a12d15..f105de3 100644 --- a/init.vim +++ b/init.vim @@ -93,6 +93,12 @@ nmap ]f (coc-fix-current) " Symbol renaming nmap rn (coc-rename) +" GoTo code navigation +nmap gd (coc-definition) +nmap gy (coc-type-definition) +nmap gi (coc-implementation) +nmap gr (coc-references) + " Temporary!!! Remove after CoC update let storage_file = stdpath('data') . '/coc-localstorage' let g:coc_node_args = ['--localstorage-file=' . storage_file]