mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/vim-go/autoload/go/lint.vim

31 lines
679 B
VimL
Raw Normal View History

2014-10-31 17:30:24 -04:00
" Copyright 2013 The Go Authors. All rights reserved.
" Use of this source code is governed by a BSD-style
" license that can be found in the LICENSE file.
"
" lint.vim: Vim command to lint Go files with golint.
"
" https://github.com/golang/lint
"
" This filetype plugin add a new commands for go buffers:
"
" :GoLint
"
" Run golint for the current Go file.
"
if !exists("g:go_golint_bin")
let g:go_golint_bin = "golint"
endif
function! go#lint#Run() abort
2015-07-13 06:22:46 -04:00
let bin_path = go#path#CheckBinPath(g:go_golint_bin)
2014-10-31 17:30:24 -04:00
if empty(bin_path)
return
endif
silent cexpr system(bin_path . " " . shellescape(expand('%')))
cwindow
endfunction
" vim:ts=4:sw=4:et