353 lines
9.4 KiB
VimL
353 lines
9.4 KiB
VimL
" don't spam the user when Vim is started in Vi compatibility mode
|
|
let s:cpo_save = &cpo
|
|
set cpo&vim
|
|
|
|
function! go#lsp#message#Initialize(wd) abort
|
|
return {
|
|
\ 'notification': 0,
|
|
\ 'method': 'initialize',
|
|
\ 'params': {
|
|
\ 'processId': getpid(),
|
|
\ 'rootUri': go#path#ToURI(a:wd),
|
|
\ 'capabilities': {
|
|
\ 'workspace': {
|
|
\ 'workspaceFolders': v:true,
|
|
\ 'didChangeConfiguration': {
|
|
\ 'dynamicRegistration': v:true,
|
|
\ },
|
|
\ 'configuration': v:true,
|
|
\ },
|
|
\ 'textDocument': {
|
|
\ 'hover': {
|
|
\ 'contentFormat': ['plaintext'],
|
|
\ },
|
|
\ 'completion': {
|
|
\ 'completionItem': {
|
|
\ 'snippetSupport': go#config#GoplsUsePlaceholders() ? v:true : v:false,
|
|
\ },
|
|
\ },
|
|
\ 'codeAction': {
|
|
\ 'codeActionLiteralSupport': {
|
|
\ 'codeActionKind': {
|
|
\ 'valueSet': ['source.organizeImports'],
|
|
\ },
|
|
\ },
|
|
\ },
|
|
\ }
|
|
\ },
|
|
\ 'workspaceFolders': [s:workspaceFolder(0, a:wd)],
|
|
\ }
|
|
\ }
|
|
endfunction
|
|
|
|
function! go#lsp#message#Initialized() abort
|
|
return {
|
|
\ 'notification': 1,
|
|
\ 'method': 'initialized',
|
|
\ 'params': {},
|
|
\ }
|
|
endfunction
|
|
|
|
function! go#lsp#message#Shutdown() abort
|
|
return {
|
|
\ 'notification': 0,
|
|
\ 'method': 'shutdown',
|
|
\ }
|
|
endfunction
|
|
|
|
function! go#lsp#message#Format(file) abort
|
|
return {
|
|
\ 'notification': 0,
|
|
\ 'method': 'textDocument/formatting',
|
|
\ 'params': {
|
|
\ 'textDocument': {
|
|
\ 'uri': go#path#ToURI(a:file)
|
|
\ },
|
|
\ 'options': {
|
|
\ 'insertSpaces': v:false,
|
|
\ },
|
|
\ }
|
|
\ }
|
|
endfunction
|
|
|
|
function! go#lsp#message#CodeActionImports(file) abort
|
|
return s:codeAction('source.organizeImports', a:file)
|
|
endfunction
|
|
|
|
function! s:codeAction(name, file) abort
|
|
return {
|
|
\ 'notification': 0,
|
|
\ 'method': 'textDocument/codeAction',
|
|
\ 'params': {
|
|
\ 'textDocument': {
|
|
\ 'uri': go#path#ToURI(a:file)
|
|
\ },
|
|
\ 'range': {
|
|
\ 'start': {'line': 0, 'character': 0},
|
|
\ 'end': {'line': line('$'), 'character': 0},
|
|
\ },
|
|
\ 'context': {
|
|
\ 'only': [a:name],
|
|
\ },
|
|
\ }
|
|
\ }
|
|
endfunction
|
|
|
|
function! go#lsp#message#Exit() abort
|
|
return {
|
|
\ 'notification': 1,
|
|
\ 'method': 'exit',
|
|
\ }
|
|
endfunction
|
|
|
|
function! go#lsp#message#WorkspaceFoldersResult(dirs) abort
|
|
return map(copy(a:dirs), function('s:workspaceFolder', []))
|
|
endfunction
|
|
|
|
function! go#lsp#message#Definition(file, line, col) abort
|
|
return {
|
|
\ 'notification': 0,
|
|
\ 'method': 'textDocument/definition',
|
|
\ 'params': {
|
|
\ 'textDocument': {
|
|
\ 'uri': go#path#ToURI(a:file)
|
|
\ },
|
|
\ 'position': s:position(a:line, a:col)
|
|
\ }
|
|
\ }
|
|
endfunction
|
|
|
|
function! go#lsp#message#TypeDefinition(file, line, col) abort
|
|
return {
|
|
\ 'notification': 0,
|
|
\ 'method': 'textDocument/typeDefinition',
|
|
\ 'params': {
|
|
\ 'textDocument': {
|
|
\ 'uri': go#path#ToURI(a:file)
|
|
\ },
|
|
\ 'position': s:position(a:line, a:col)
|
|
\ }
|
|
\ }
|
|
endfunction
|
|
|
|
function! go#lsp#message#Implementation(file, line, col) abort
|
|
return {
|
|
\ 'notification': 0,
|
|
\ 'method': 'textDocument/implementation',
|
|
\ 'params': {
|
|
\ 'textDocument': {
|
|
\ 'uri': go#path#ToURI(a:file)
|
|
\ },
|
|
\ 'position': s:position(a:line, a:col)
|
|
\ }
|
|
\ }
|
|
endfunction
|
|
|
|
function! go#lsp#message#DidOpen(file, content, version) abort
|
|
return {
|
|
\ 'notification': 1,
|
|
\ 'method': 'textDocument/didOpen',
|
|
\ 'params': {
|
|
\ 'textDocument': {
|
|
\ 'uri': go#path#ToURI(a:file),
|
|
\ 'languageId': 'go',
|
|
\ 'text': a:content,
|
|
\ 'version': a:version,
|
|
\ }
|
|
\ }
|
|
\ }
|
|
endfunction
|
|
|
|
function! go#lsp#message#DidChange(file, content, version) abort
|
|
return {
|
|
\ 'notification': 1,
|
|
\ 'method': 'textDocument/didChange',
|
|
\ 'params': {
|
|
\ 'textDocument': {
|
|
\ 'uri': go#path#ToURI(a:file),
|
|
\ 'version': a:version,
|
|
\ },
|
|
\ 'contentChanges': [
|
|
\ {
|
|
\ 'text': a:content,
|
|
\ }
|
|
\ ]
|
|
\ }
|
|
\ }
|
|
endfunction
|
|
|
|
function! go#lsp#message#DidClose(file) abort
|
|
return {
|
|
\ 'notification': 1,
|
|
\ 'method': 'textDocument/didClose',
|
|
\ 'params': {
|
|
\ 'textDocument': {
|
|
\ 'uri': go#path#ToURI(a:file),
|
|
\ }
|
|
\ }
|
|
\ }
|
|
endfunction
|
|
|
|
function! go#lsp#message#Completion(file, line, col) abort
|
|
return {
|
|
\ 'notification': 0,
|
|
\ 'method': 'textDocument/completion',
|
|
\ 'params': {
|
|
\ 'textDocument': {
|
|
\ 'uri': go#path#ToURI(a:file)
|
|
\ },
|
|
\ 'position': s:position(a:line, a:col),
|
|
\ }
|
|
\ }
|
|
endfunction
|
|
|
|
function! go#lsp#message#References(file, line, col) abort
|
|
return {
|
|
\ 'notification': 0,
|
|
\ 'method': 'textDocument/references',
|
|
\ 'params': {
|
|
\ 'textDocument': {
|
|
\ 'uri': go#path#ToURI(a:file)
|
|
\ },
|
|
\ 'position': s:position(a:line, a:col),
|
|
\ 'context': {
|
|
\ 'includeDeclaration': v:true,
|
|
\ },
|
|
\ }
|
|
\ }
|
|
endfunction
|
|
|
|
function! go#lsp#message#Hover(file, line, col) abort
|
|
return {
|
|
\ 'notification': 0,
|
|
\ 'method': 'textDocument/hover',
|
|
\ 'params': {
|
|
\ 'textDocument': {
|
|
\ 'uri': go#path#ToURI(a:file)
|
|
\ },
|
|
\ 'position': s:position(a:line, a:col),
|
|
\ }
|
|
\ }
|
|
endfunction
|
|
|
|
function! go#lsp#message#ChangeWorkspaceFolders(add, remove) abort
|
|
let l:addDirs = map(copy(a:add), function('s:workspaceFolder', []))
|
|
let l:removeDirs = map(copy(a:remove), function('s:workspaceFolder', []))
|
|
|
|
return {
|
|
\ 'notification': 1,
|
|
\ 'method': 'workspace/didChangeWorkspaceFolders',
|
|
\ 'params': {
|
|
\ 'event': {
|
|
\ 'removed': l:removeDirs,
|
|
\ 'added': l:addDirs,
|
|
\ },
|
|
\ }
|
|
\ }
|
|
|
|
endfunction
|
|
|
|
function! go#lsp#message#ConfigurationResult(items) abort
|
|
let l:result = []
|
|
|
|
" results must be in the same order as the items
|
|
for l:item in a:items
|
|
let l:config = {
|
|
\ 'buildFlags': [],
|
|
\ 'hoverKind': 'Structured',
|
|
\ }
|
|
let l:buildtags = go#config#BuildTags()
|
|
if buildtags isnot ''
|
|
let l:config.buildFlags = extend(l:config.buildFlags, ['-tags', go#config#BuildTags()])
|
|
endif
|
|
|
|
let l:deepCompletion = go#config#GoplsDeepCompletion()
|
|
let l:matcher = go#config#GoplsMatcher()
|
|
let l:completeUnimported = go#config#GoplsCompleteUnimported()
|
|
let l:staticcheck = go#config#GoplsStaticCheck()
|
|
let l:usePlaceholder = go#config#GoplsUsePlaceholders()
|
|
let l:tempModfile = go#config#GoplsTempModfile()
|
|
let l:analyses = go#config#GoplsAnalyses()
|
|
let l:local = go#config#GoplsLocal()
|
|
let l:gofumpt = go#config#GoplsGofumpt()
|
|
let l:settings = go#config#GoplsSettings()
|
|
|
|
if l:deepCompletion isnot v:null
|
|
if l:deepCompletion
|
|
let l:config.deepCompletion = v:true
|
|
else
|
|
let l:config.deepCompletion = v:false
|
|
endif
|
|
endif
|
|
|
|
if l:matcher isnot v:null
|
|
let l:config.matcher = l:matcher
|
|
endif
|
|
|
|
if l:completeUnimported isnot v:null
|
|
if l:completeUnimported
|
|
let l:config.completeUnimported = v:true
|
|
else
|
|
let l:config.completeUnimported = v:false
|
|
endif
|
|
endif
|
|
|
|
if l:staticcheck isnot v:null
|
|
if l:staticcheck
|
|
let l:config.staticcheck = v:true
|
|
else
|
|
let l:config.staticcheck = v:false
|
|
endif
|
|
endif
|
|
|
|
if l:usePlaceholder isnot v:null
|
|
if l:usePlaceholder
|
|
let l:config.usePlaceholders = v:true
|
|
else
|
|
let l:config.usePlaceholders = v:false
|
|
endif
|
|
endif
|
|
|
|
if l:tempModfile isnot v:null
|
|
if l:tempModfile
|
|
let l:config.tempModfile = v:true
|
|
else
|
|
let l:config.tempModfile = v:false
|
|
endif
|
|
endif
|
|
|
|
if l:analyses isnot v:null
|
|
let l:config.analyses = l:analyses
|
|
endif
|
|
|
|
if l:local isnot v:null
|
|
let l:config.local = l:local
|
|
endif
|
|
|
|
if l:gofumpt isnot v:null
|
|
let l:config.gofumpt = l:gofumpt
|
|
endif
|
|
|
|
if l:settings isnot v:null
|
|
let l:config = extend(l:config, l:settings, 'keep')
|
|
endif
|
|
|
|
let l:result = add(l:result, l:config)
|
|
endfor
|
|
|
|
return l:result
|
|
endfunction
|
|
|
|
function s:workspaceFolder(key, val) abort
|
|
return {'uri': go#path#ToURI(a:val), 'name': a:val}
|
|
endfunction
|
|
|
|
function! s:position(line, col) abort
|
|
return {'line': a:line, 'character': a:col}
|
|
endfunction
|
|
|
|
" restore Vi compatibility settings
|
|
let &cpo = s:cpo_save
|
|
unlet s:cpo_save
|
|
|
|
" vim: sw=2 ts=2 et
|