Skip to content

Commit

Permalink
Merge pull request #1295 from etdub/master
Browse files Browse the repository at this point in the history
Change GoLint command to lint the current directory
  • Loading branch information
fatih authored May 22, 2017
2 parents 7fb9689 + fd7d4d4 commit 2e19798
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions autoload/go/lint.vim
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,11 @@ function! go#lint#Golint(...) abort
endif

if a:0 == 0
let goargs = shellescape(expand('%'))
let out = go#util#System(bin_path)
else
let goargs = go#util#Shelljoin(a:000)
let out = go#util#System(bin_path . " " . go#util#Shelljoin(a:000))
endif

let out = go#util#System(bin_path . " " . goargs)
if empty(out)
echon "vim-go: " | echohl Function | echon "[lint] PASS" | echohl None
return
Expand Down
2 changes: 1 addition & 1 deletion doc/vim-go.txt
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ COMMANDS *go-commands*
*:GoLint*
:GoLint [packages]

Run golint for the current Go file, or for given packages.
Run golint for the current directory, or for given packages.

*:GoDoc*
:GoDoc [word]
Expand Down

0 comments on commit 2e19798

Please sign in to comment.