let s:go_stack = [] let s:go_stack_level = 0 function! go#def#Jump(mode) abort let fname = fnamemodify(expand("%"), ':p:gs?\\?/?') " so guru right now is slow for some people. previously we were using " godef which also has it's own quirks. But this issue come up so many " times I've decided to support both. By default we still use guru as it " covers all edge cases, but now anyone can switch to godef if they wish let bin_name = get(g:, 'go_def_mode', 'guru') if bin_name == 'godef' if &modified " Write current unsaved buffer to a temp file and use the modified content let l:tmpname = tempname() call writefile(go#util#GetLines(), l:tmpname) let fname = l:tmpname endif let bin_path = go#path#CheckBinPath("godef") if empty(bin_path) return endif let command = printf("%s -f=%s -o=%s -t", go#util#Shellescape(bin_path), \ go#util#Shellescape(fname), go#util#OffsetCursor()) let out = go#util#System(command) if exists("l:tmpname") call delete(l:tmpname) endif elseif bin_name == 'guru' let bin_path = go#path#CheckBinPath("guru") if empty(bin_path) return endif let cmd = [bin_path] let stdin_content = "" if &modified let content = join(go#util#GetLines(), "\n") let stdin_content = fname . "\n" . strlen(content) . "\n" . content call add(cmd, "-modified") endif if exists('g:go_build_tags') let tags = get(g:, 'go_build_tags') call extend(cmd, ["-tags", tags]) endif let fname = fname.':#'.go#util#OffsetCursor() call extend(cmd, ["definition", fname]) if go#util#has_job() let l:spawn_args = { \ 'cmd': cmd, \ 'custom_cb': function('s:jump_to_declaration_cb', [a:mode, bin_name]), \ } if &modified let l:spawn_args.input = stdin_content endif call go#util#EchoProgress("searching declaration ...") call s:def_job(spawn_args) return endif let command = join(cmd, " ") if &modified let out = go#util#System(command, stdin_content) else let out = go#util#System(command) endif else call go#util#EchoError('go_def_mode value: '. bin_name .' is not valid. Valid values are: [godef, guru]') return endif if go#util#ShellError() != 0 call go#util#EchoError(out) return endif call go#def#jump_to_declaration(out, a:mode, bin_name) endfunction function! s:jump_to_declaration_cb(mode, bin_name, job, exit_status, data) abort if a:exit_status != 0 return endif call go#def#jump_to_declaration(a:data[0], a:mode, a:bin_name) call go#util#EchoSuccess(fnamemodify(a:data[0], ":t")) endfunction function! go#def#jump_to_declaration(out, mode, bin_name) abort let final_out = a:out if a:bin_name == "godef" " append the type information to the same line so our we can parse it. " This makes it compatible with guru output. let final_out = join(split(a:out, '\n'), ':') endif " strip line ending let out = split(final_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(...) abort let s:go_stack = [] let s:go_stack_level = 0 endfunction function! go#def#StackPop(...) abort 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(...) abort 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 if expand('%:p') != target["file"] if &modified exec 'hide edit' target["file"] else exec 'edit' target["file"] endif endif 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 function s:def_job(args) abort function! s:error_info_cb(job, exit_status, data) closure " do not print anything during async definition search&jump endfunction let a:args.error_info_cb = funcref('s:error_info_cb') let callbacks = go#job#Spawn(a:args) let start_options = { \ 'callback': callbacks.callback, \ 'exit_cb': callbacks.exit_cb, \ } if &modified let l:tmpname = tempname() call writefile(split(a:args.input, "\n"), l:tmpname, "b") let l:start_options.in_io = "file" let l:start_options.in_name = l:tmpname endif call job_start(a:args.cmd, start_options) endfunction " vim: sw=2 ts=2 et