2014-10-31 17:30:24 -04:00
|
|
|
if !exists("g:go_gorename_bin")
|
|
|
|
let g:go_gorename_bin = "gorename"
|
|
|
|
endif
|
|
|
|
|
|
|
|
function! go#rename#Rename(...)
|
|
|
|
let to = ""
|
|
|
|
if a:0 == 0
|
|
|
|
let ask = printf("vim-go: rename '%s' to: ", expand("<cword>"))
|
|
|
|
let to = input(ask)
|
|
|
|
redraw
|
|
|
|
else
|
|
|
|
let to = a:1
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
"return with a warning if the bin doesn't exist
|
|
|
|
let bin_path = go#tool#BinPath(g:go_gorename_bin)
|
|
|
|
if empty(bin_path)
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
2015-01-18 07:58:28 -05:00
|
|
|
let fname = resolve(expand('%:p:t'))
|
2014-10-31 17:30:24 -04:00
|
|
|
let pos = s:getpos(line('.'), col('.'))
|
2015-01-18 07:58:28 -05:00
|
|
|
let cmd = printf('%s -offset %s -to %s', shellescape(bin_path), shellescape(printf('%s:#%d', fname, pos)), shellescape(to))
|
2014-10-31 17:30:24 -04:00
|
|
|
|
|
|
|
let out = go#tool#ExecuteInDir(cmd)
|
|
|
|
|
|
|
|
" strip out newline on the end that gorename puts. If we don't remove, it
|
|
|
|
" will trigger the 'Hit ENTER to continue' prompt
|
|
|
|
let clean = split(out, '\n')
|
|
|
|
|
|
|
|
if v:shell_error
|
|
|
|
redraw | echon "vim-go: " | echohl Statement | echon clean[0] | echohl None
|
|
|
|
else
|
|
|
|
redraw | echon "vim-go: " | echohl Function | echon clean[0] | echohl None
|
|
|
|
endif
|
|
|
|
|
|
|
|
" refresh the buffer so we can see the new content
|
|
|
|
silent execute ":e"
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
func! s:getpos(l, c)
|
|
|
|
if &encoding != 'utf-8'
|
|
|
|
let buf = a:l == 1 ? '' : (join(getline(1, a:l-1), "\n") . "\n")
|
|
|
|
let buf .= a:c == 1 ? '' : getline('.')[:a:c-2]
|
|
|
|
return len(iconv(buf, &encoding, 'utf-8'))
|
|
|
|
endif
|
|
|
|
return line2byte(a:l) + (a:c-2)
|
|
|
|
endfun
|
|
|
|
|
|
|
|
" vim:ts=4:sw=4:et
|
|
|
|
"
|