let s:go_stack = [] let s:go_stack_level = 0 function! go#def#Jump(mode) let bin_path = go#path#CheckBinPath("guru") if empty(bin_path) return endif let old_gopath = $GOPATH let $GOPATH = go#path#Detect() let flags = "" if exists('g:go_guru_tags') let tags = get(g:, 'go_guru_tags') let flags = printf(" -tags %s", tags) endif let fname = fnamemodify(expand("%"), ':p:gs?\\?/?') let command = printf("%s %s definition %s:#%s", bin_path, flags, shellescape(fname), go#util#OffsetCursor()) let out = go#util#System(command) if go#util#ShellError() != 0 call go#util#EchoError(out) return endif call s:jump_to_declaration(out, a:mode) let $GOPATH = old_gopath endfunction function! s:jump_to_declaration(out, mode) " strip line ending let out = split(a:out, go#util#LineEnding())[0] if go#util#IsWin() let parts = split(out, '\(^[a-zA-Z]\)\@,:navigate :jump ,q:exit'] let i = 0 while i < len(s:go_stack) let entry = s:go_stack[i] let prefix = "" if i == s:go_stack_level let prefix = ">" else let prefix = " " endif call add(stackOut, printf("%s %d %s|%d col %d|%s", \ prefix, i+1, entry["file"], entry["line"], entry["col"], entry["ident"])) let i += 1 endwhile if s:go_stack_level == i call add(stackOut, "> ") endif call go#ui#OpenWindow("GoDef Stack", stackOut, "godefstack") noremap :call go#def#SelectStackEntry() noremap :call go#ui#CloseWindow() noremap q :call go#ui#CloseWindow() endfunction function! go#def#StackClear(...) let s:go_stack = [] let s:go_stack_level = 0 endfunction function! go#def#StackPop(...) if len(s:go_stack) == 0 call go#util#EchoError("godef stack empty") return endif if s:go_stack_level == 0 call go#util#EchoError("at bottom of the godef stack") return endif if !len(a:000) let numPop = 1 else let numPop = a:1 endif let newLevel = str2nr(s:go_stack_level) - str2nr(numPop) call go#def#Stack(newLevel + 1) endfunction function! go#def#Stack(...) if len(s:go_stack) == 0 call go#util#EchoError("godef stack empty") return endif if !len(a:000) " Display interactive stack call go#def#StackUI() return else let jumpTarget = a:1 endif if jumpTarget !~ '^\d\+$' if jumpTarget !~ '^\s*$' call go#util#EchoError("location must be a number") endif return endif let jumpTarget = str2nr(jumpTarget) - 1 if jumpTarget >= 0 && jumpTarget < len(s:go_stack) let s:go_stack_level = jumpTarget let target = s:go_stack[s:go_stack_level] " jump exec 'edit '.target["file"] call cursor(target["line"], target["col"]) normal! zz else call go#util#EchoError("invalid location. Try :GoDefStack to see the list of valid entries") endif endfunction