From 28c0e1cc0dab8a7110998d4504d46b5bee134fd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Ortega=20Froysa?= Date: Thu, 13 Nov 2025 08:20:10 +0100 Subject: [PATCH] Add CoC GoTo code navigation. --- init.vim | 6 ++++++ 1 file changed, 6 insertions(+) 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]