2017-11-24 08:59:41 -05:00
|
|
|
function! go#fillstruct#FillStruct() abort
|
|
|
|
let l:cmd = ['fillstruct',
|
|
|
|
\ '-file', bufname(''),
|
2018-02-04 06:35:08 -05:00
|
|
|
\ '-offset', go#util#OffsetCursor(),
|
|
|
|
\ '-line', line('.')]
|
2018-06-14 06:31:12 -04:00
|
|
|
" Needs: https://github.com/davidrjenni/reftools/pull/14
|
|
|
|
"\ '-tags', go#config#BuildTags()]
|
2017-11-24 08:59:41 -05:00
|
|
|
|
|
|
|
" Read from stdin if modified.
|
|
|
|
if &modified
|
|
|
|
call add(l:cmd, '-modified')
|
|
|
|
let [l:out, l:err] = go#util#Exec(l:cmd, go#util#archive())
|
|
|
|
else
|
|
|
|
let [l:out, l:err] = go#util#Exec(l:cmd)
|
|
|
|
endif
|
|
|
|
|
|
|
|
if l:err
|
|
|
|
call go#util#EchoError(l:out)
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
|
|
|
try
|
|
|
|
let l:json = json_decode(l:out)
|
|
|
|
catch
|
|
|
|
call go#util#EchoError(l:out)
|
|
|
|
return
|
|
|
|
endtry
|
|
|
|
|
2018-02-04 06:35:08 -05:00
|
|
|
" Output is array:
|
|
|
|
"[
|
|
|
|
" {"start": 92, "end": 106, "code": "mail.Address{\n\tName: \"\",\n\tAddress: \"\",\n}"},
|
|
|
|
" {...second struct...}
|
|
|
|
" ]
|
|
|
|
|
2017-11-24 08:59:41 -05:00
|
|
|
let l:pos = getpos('.')
|
|
|
|
|
|
|
|
try
|
2018-02-04 06:35:08 -05:00
|
|
|
for l:struct in l:json
|
|
|
|
let l:code = split(l:struct['code'], "\n")
|
|
|
|
|
|
|
|
" Add any code before/after the struct.
|
|
|
|
exe l:struct['start'] . 'go'
|
|
|
|
let l:code[0] = getline('.')[:col('.')-1] . l:code[0]
|
|
|
|
exe l:struct['end'] . 'go'
|
|
|
|
let l:code[len(l:code)-1] .= getline('.')[col('.'):]
|
|
|
|
|
|
|
|
" Indent every line except the first one; makes it look nice.
|
|
|
|
let l:indent = repeat("\t", indent('.') / &tabstop)
|
|
|
|
for l:i in range(1, len(l:code)-1)
|
|
|
|
let l:code[l:i] = l:indent . l:code[l:i]
|
|
|
|
endfor
|
|
|
|
|
|
|
|
" Out with the old ...
|
|
|
|
exe 'normal! ' . l:struct['start'] . 'gov' . l:struct['end'] . 'gox'
|
|
|
|
" ... in with the new.
|
|
|
|
call setline('.', l:code[0])
|
|
|
|
call append('.', l:code[1:])
|
2017-11-24 08:59:41 -05:00
|
|
|
endfor
|
|
|
|
finally
|
|
|
|
call setpos('.', l:pos)
|
|
|
|
endtry
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" vim: sw=2 ts=2 et
|