diff options
Diffstat (limited to 'ale_linters/go/gopls.vim')
-rw-r--r-- | ale_linters/go/gopls.vim | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/ale_linters/go/gopls.vim b/ale_linters/go/gopls.vim index 23082e9b..80909830 100644 --- a/ale_linters/go/gopls.vim +++ b/ale_linters/go/gopls.vim @@ -7,20 +7,6 @@ call ale#Set('go_gopls_options', '--mode stdio') call ale#Set('go_gopls_init_options', {}) call ale#Set('go_gopls_use_global', get(g:, 'ale_use_global_executables', 0)) -function! s:GetGoPathExecutable(suffix) abort - let l:prefix = $GOPATH - - if !empty($GOPATH) - let l:prefix = $GOPATH - elseif has('win32') - let l:prefix = $USERPROFILE . '/go' - else - let l:prefix = $HOME . '/go' - endif - - return ale#path#Simplify(l:prefix . '/' . a:suffix) -endfunction - function! ale_linters#go#gopls#GetCommand(buffer) abort return ale#go#EnvString(a:buffer) \ . '%e' @@ -45,7 +31,7 @@ call ale#linter#Define('go', { \ 'name': 'gopls', \ 'lsp': 'stdio', \ 'executable': {b -> ale#path#FindExecutable(b, 'go_gopls', [ -\ s:GetGoPathExecutable('bin/gopls'), +\ ale#go#GetGoPathExecutable('bin/gopls'), \ ])}, \ 'command': function('ale_linters#go#gopls#GetCommand'), \ 'project_root': function('ale_linters#go#gopls#FindProjectRoot'), |