diff options
author | Rob Watson <rob@netflux.io> | 2021-02-03 14:49:27 +0100 |
---|---|---|
committer | Rob Watson <rob@netflux.io> | 2021-02-03 14:49:27 +0100 |
commit | 26b92f73b5e0f54b0053cf2bd69b79f4f01afe91 (patch) | |
tree | c8b4d5cd3edacefb1afc0fc85a65895925298e10 /ale_linters/go | |
parent | 9b5c09047361f3ec2cf18afbb6d1e03047a59778 (diff) | |
download | ale-26b92f73b5e0f54b0053cf2bd69b79f4f01afe91.zip |
gopls: add go_gopls_init_options
Diffstat (limited to 'ale_linters/go')
-rw-r--r-- | ale_linters/go/gopls.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ale_linters/go/gopls.vim b/ale_linters/go/gopls.vim index dcff5ec7..f3f1bd6b 100644 --- a/ale_linters/go/gopls.vim +++ b/ale_linters/go/gopls.vim @@ -4,6 +4,7 @@ call ale#Set('go_gopls_executable', 'gopls') call ale#Set('go_gopls_options', '--mode stdio') +call ale#Set('go_gopls_init_options', {}) function! ale_linters#go#gopls#GetCommand(buffer) abort return ale#go#EnvString(a:buffer) @@ -31,4 +32,5 @@ call ale#linter#Define('go', { \ 'executable': {b -> ale#Var(b, 'go_gopls_executable')}, \ 'command': function('ale_linters#go#gopls#GetCommand'), \ 'project_root': function('ale_linters#go#gopls#FindProjectRoot'), +\ 'initialization_options': {b -> ale#Var(b, 'go_gopls_init_options')}, \}) |