Skip to content

Commit

Permalink
jobcontrol: cleanup location list if it's passing
Browse files Browse the repository at this point in the history
  • Loading branch information
fatih committed Dec 8, 2015
1 parent 1751ade commit f772a42
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion autoload/go/jobcontrol.vim
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function! go#jobcontrol#Statusline() abort
return ''
endif

return printf("%s [%s]", job.desc, job.state)
return printf("%s ... [%s]", job.desc, job.state)
endfor

return ''
Expand Down Expand Up @@ -106,6 +106,9 @@ function! s:on_exit(job_id, data)

if !len(errors)
" no errors could be past, just return
call go#list#Clean()
call go#list#Window()

let self.state = "SUCCESS"
return
endif
Expand Down

0 comments on commit f772a42

Please sign in to comment.