diff --git a/vim/after/ftplugin/go.vim b/vim/after/ftplugin/go.vim index 863491d..557f02f 100644 --- a/vim/after/ftplugin/go.vim +++ b/vim/after/ftplugin/go.vim @@ -1,13 +1,17 @@ -nmap gb :GoBuild -nmap gc :GoCallers -nmap i :GoImplements -nmap ^ :GoAlternate -nmap d :GoDoc +nmap gb :GoBuild +nmap gc :GoCallers +nmap gi :GoImplements +nmap ^ :GoAlternate +nmap gk :GoDocBrowser +nmap gd :GoDecls +nmap gD :GoDeclsDir -map gv :vsplit:GoAlternate! -map gs :split:GoAlternate! -map gt :w :GoTest -map gf :w :GoTestFunc +nmap gv :vsplit:GoAlternate! +nmap gs :split:GoAlternate! +nmap gt :w :GoTest +nmap gf :w :GoTestFunc +nmap gat :GoAddTags +nmap grt :GoRemoveTags nnoremap dr :GoDebugBreakpoint nnoremap d! :GoDebugStart