function! go#Gofmt(path) abort let cmd = 'gofmt -w '.a:path call system(cmd) let winstate = winsaveview() exec 'edit!' call winrestview(winstate) endfunction