summaryrefslogtreecommitdiff
path: root/ale_linters/go
diff options
context:
space:
mode:
authorHoracio Sanson <horacio@allm.net>2018-08-30 11:39:03 +0900
committerHoracio Sanson <horacio@allm.net>2018-09-06 13:46:59 +0900
commita9333c2866ad604ef5b8523af7fb1fce10057833 (patch)
tree9c8d51ccbd6282d27e503690a02153a1f9969a25 /ale_linters/go
parentd476578a402763f2c6e4e0ada2eb345d0ac938d7 (diff)
downloadale-a9333c2866ad604ef5b8523af7fb1fce10057833.zip
Fix #1822 - support go-langserver lsp.
Diffstat (limited to 'ale_linters/go')
-rw-r--r--ale_linters/go/golangserver.vim28
1 files changed, 28 insertions, 0 deletions
diff --git a/ale_linters/go/golangserver.vim b/ale_linters/go/golangserver.vim
new file mode 100644
index 00000000..c80b096d
--- /dev/null
+++ b/ale_linters/go/golangserver.vim
@@ -0,0 +1,28 @@
+" Author: Horacio Sanson <https://github.com/hsanson>
+" Description: Support for go-langserver https://github.com/sourcegraph/go-langserver
+
+call ale#Set('go_langserver_executable', 'go-langserver')
+call ale#Set('go_langserver_options', '')
+
+function! ale_linters#go#golangserver#GetCommand(buffer) abort
+ let l:executable = [ale#Escape(ale#Var(a:buffer, 'go_langserver_executable'))]
+ let l:options = ale#Var(a:buffer, 'go_langserver_options')
+ let l:options = substitute(l:options, '-gocodecompletion', '', 'g')
+ let l:options = filter(split(l:options, ' '), 'empty(v:val) != 1')
+
+ if(ale#Var(a:buffer, 'completion_enabled') == 1)
+ call add(l:options, '-gocodecompletion')
+ endif
+
+ let l:options = uniq(sort(l:options))
+
+ return join(extend(l:executable, l:options), ' ')
+endfunction
+
+call ale#linter#Define('go', {
+\ 'name': 'golangserver',
+\ 'lsp': 'stdio',
+\ 'executable_callback': ale#VarFunc('go_langserver_executable'),
+\ 'command_callback': 'ale_linters#go#golangserver#GetCommand',
+\ 'project_root_callback': 'ale#go#FindProjectRoot',
+\})