2018-12-17 06:28:27 -05:00
|
|
|
" don't spam the user when Vim is started in Vi compatibility mode
|
|
|
|
let s:cpo_save = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
2017-11-24 08:59:41 -05:00
|
|
|
function! s:code(group, attr) abort
|
|
|
|
let code = synIDattr(synIDtrans(hlID(a:group)), a:attr, "cterm")
|
|
|
|
if code =~ '^[0-9]\+$'
|
|
|
|
return code
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:color(str, group) abort
|
|
|
|
let fg = s:code(a:group, "fg")
|
|
|
|
let bg = s:code(a:group, "bg")
|
|
|
|
let bold = s:code(a:group, "bold")
|
|
|
|
let italic = s:code(a:group, "italic")
|
|
|
|
let reverse = s:code(a:group, "reverse")
|
|
|
|
let underline = s:code(a:group, "underline")
|
|
|
|
let color = (empty(fg) ? "" : ("38;5;".fg)) .
|
|
|
|
\ (empty(bg) ? "" : (";48;5;".bg)) .
|
|
|
|
\ (empty(bold) ? "" : ";1") .
|
|
|
|
\ (empty(italic) ? "" : ";3") .
|
|
|
|
\ (empty(reverse) ? "" : ";7") .
|
|
|
|
\ (empty(underline) ? "" : ";4")
|
|
|
|
return printf("\x1b[%sm%s\x1b[m", color, a:str)
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:sink(str) abort
|
|
|
|
if len(a:str) < 2
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
let cd = exists('*haslocaldir') && haslocaldir() ? 'lcd ' : 'cd '
|
|
|
|
let dir = getcwd()
|
|
|
|
try
|
|
|
|
" we jump to the file directory so we can get the fullpath via fnamemodify
|
|
|
|
" below
|
|
|
|
execute cd . fnameescape(s:current_dir)
|
|
|
|
|
|
|
|
let vals = matchlist(a:str[1], '|\(.\{-}\):\(\d\+\):\(\d\+\)\s*\(.*\)|')
|
|
|
|
|
|
|
|
" i.e: main.go
|
|
|
|
let filename = vals[1]
|
|
|
|
let line = vals[2]
|
|
|
|
let col = vals[3]
|
|
|
|
|
|
|
|
" i.e: /Users/fatih/vim-go/main.go
|
|
|
|
let filepath = fnamemodify(filename, ":p")
|
|
|
|
|
|
|
|
let cmd = get({'ctrl-x': 'split',
|
|
|
|
\ 'ctrl-v': 'vertical split',
|
|
|
|
\ 'ctrl-t': 'tabe'}, a:str[0], 'e')
|
|
|
|
execute cmd fnameescape(filepath)
|
|
|
|
call cursor(line, col)
|
|
|
|
silent! norm! zvzz
|
|
|
|
finally
|
|
|
|
"jump back to old dir
|
|
|
|
execute cd . fnameescape(dir)
|
|
|
|
endtry
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:source(mode,...) abort
|
|
|
|
let s:current_dir = expand('%:p:h')
|
|
|
|
let ret_decls = []
|
|
|
|
|
2018-06-14 06:31:12 -04:00
|
|
|
let l:cmd = ['motion',
|
|
|
|
\ '-format', 'vim',
|
|
|
|
\ '-mode', 'decls',
|
|
|
|
\ '-include', go#config#DeclsIncludes(),
|
|
|
|
\ ]
|
2017-11-24 08:59:41 -05:00
|
|
|
|
|
|
|
call go#cmd#autowrite()
|
|
|
|
|
|
|
|
if a:mode == 0
|
|
|
|
" current file mode
|
2018-06-14 06:31:12 -04:00
|
|
|
let l:fname = expand("%:p")
|
2017-11-24 08:59:41 -05:00
|
|
|
if a:0 && !empty(a:1)
|
2018-06-14 06:31:12 -04:00
|
|
|
let l:fname = a:1
|
2017-11-24 08:59:41 -05:00
|
|
|
endif
|
|
|
|
|
2018-06-14 06:31:12 -04:00
|
|
|
let cmd += ['-file', l:fname]
|
2017-11-24 08:59:41 -05:00
|
|
|
else
|
|
|
|
" all functions mode
|
|
|
|
if a:0 && !empty(a:1)
|
|
|
|
let s:current_dir = a:1
|
|
|
|
endif
|
|
|
|
|
2018-06-14 06:31:12 -04:00
|
|
|
let l:cmd += ['-dir', s:current_dir]
|
2017-11-24 08:59:41 -05:00
|
|
|
endif
|
|
|
|
|
2018-06-14 06:31:12 -04:00
|
|
|
let [l:out, l:err] = go#util#Exec(l:cmd)
|
|
|
|
if l:err
|
|
|
|
call go#util#EchoError(l:out)
|
2017-11-24 08:59:41 -05:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
|
|
|
let result = eval(out)
|
|
|
|
if type(result) != 4 || !has_key(result, 'decls')
|
|
|
|
return ret_decls
|
|
|
|
endif
|
|
|
|
|
|
|
|
let decls = result.decls
|
|
|
|
|
|
|
|
" find the maximum function name
|
|
|
|
let max_len = 0
|
|
|
|
for decl in decls
|
|
|
|
if len(decl.ident)> max_len
|
|
|
|
let max_len = len(decl.ident)
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
|
|
|
|
for decl in decls
|
|
|
|
" paddings
|
|
|
|
let space = " "
|
|
|
|
for i in range(max_len - len(decl.ident))
|
|
|
|
let space .= " "
|
|
|
|
endfor
|
|
|
|
|
|
|
|
let pos = printf("|%s:%s:%s|",
|
|
|
|
\ fnamemodify(decl.filename, ":t"),
|
|
|
|
\ decl.line,
|
|
|
|
\ decl.col
|
|
|
|
\)
|
|
|
|
call add(ret_decls, printf("%s\t%s %s\t%s",
|
2019-11-16 10:28:42 -05:00
|
|
|
\ s:color(decl.ident . space, "goDeclsFzfFunction"),
|
|
|
|
\ s:color(decl.keyword, "goDeclsFzfKeyword"),
|
|
|
|
\ s:color(pos, "goDeclsFzfSpecialComment"),
|
|
|
|
\ s:color(decl.full, "goDeclsFzfComment"),
|
2017-11-24 08:59:41 -05:00
|
|
|
\))
|
|
|
|
endfor
|
|
|
|
|
|
|
|
return ret_decls
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
function! fzf#decls#cmd(...) abort
|
|
|
|
let normal_fg = s:code("Normal", "fg")
|
|
|
|
let normal_bg = s:code("Normal", "bg")
|
|
|
|
let cursor_fg = s:code("CursorLine", "fg")
|
|
|
|
let cursor_bg = s:code("CursorLine", "bg")
|
|
|
|
let colors = printf(" --color %s%s%s%s%s",
|
|
|
|
\ &background,
|
|
|
|
\ empty(normal_fg) ? "" : (",fg:".normal_fg),
|
|
|
|
\ empty(normal_bg) ? "" : (",bg:".normal_bg),
|
|
|
|
\ empty(cursor_fg) ? "" : (",fg+:".cursor_fg),
|
|
|
|
\ empty(cursor_bg) ? "" : (",bg+:".cursor_bg),
|
|
|
|
\)
|
|
|
|
call fzf#run(fzf#wrap('GoDecls', {
|
|
|
|
\ 'source': call('<sid>source', a:000),
|
|
|
|
\ 'options': '-n 1 --ansi --prompt "GoDecls> " --expect=ctrl-t,ctrl-v,ctrl-x'.colors,
|
|
|
|
\ 'sink*': function('s:sink')
|
|
|
|
\ }))
|
|
|
|
endfunction
|
|
|
|
|
2018-12-17 06:28:27 -05:00
|
|
|
" restore Vi compatibility settings
|
|
|
|
let &cpo = s:cpo_save
|
|
|
|
unlet s:cpo_save
|
|
|
|
|
2017-11-24 08:59:41 -05:00
|
|
|
" vim: sw=2 ts=2 et
|