Skip to content

Commit

Permalink
Final update...
Browse files Browse the repository at this point in the history
  • Loading branch information
Sander van Harmelen committed Nov 29, 2015
1 parent a39fcb2 commit f33333f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion autoload/go/lint.vim
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ function! go#lint#Gometa(autosave, ...) abort
let errors = go#list#Get()
call go#list#Window(len(errors))

if a:autosave == 0
if !a:autosave
call go#list#JumpToFirst()
endif
endif
Expand Down
2 changes: 1 addition & 1 deletion ftplugin/go/mappings.vim
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ nnoremap <silent> <Plug>(go-doc-vertical) :<C-u>call go#doc#Open("vnew", "vsplit
nnoremap <silent> <Plug>(go-doc-split) :<C-u>call go#doc#Open("new", "split")<CR>
nnoremap <silent> <Plug>(go-doc-browser) :<C-u>call go#doc#OpenBrowser()<CR>
nnoremap <silent> <Plug>(go-metalinter) :<C-u>call go#lint#Gometa(0, '')<CR>
nnoremap <silent> <Plug>(go-metalinter) :<C-u>call go#lint#Gometa(0)<CR>
nnoremap <silent> <Plug>(go-vet) :<C-u>call go#lint#Vet(!g:go_jump_to_error)<CR>

0 comments on commit f33333f

Please sign in to comment.