-
-
Notifications
You must be signed in to change notification settings - Fork 122
/
gopls.lua
456 lines (424 loc) · 12.7 KB
/
gopls.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
local utils = require('go.utils')
local log = utils.log
local vfn = vim.fn
local M = {}
local cmds = {}
-- https://go.googlesource.com/tools/+/refs/heads/master/gopls/doc/commands.md
local gopls_cmds = {
'gopls.add_dependency',
'gopls.add_import',
'gopls.add_telemetry_counters',
'gopls.apply_fix',
'gopls.change_signature',
'gopls.check_upgrades',
'gopls.diagnose_files',
'gopls.edit_go_directive',
'gopls.fetch_vulncheck_result',
'gopls.gc_details',
'gopls.generate',
'gopls.go_get_package',
'gopls.list_imports',
'gopls.list_known_packages',
'gopls.maybe_prompt_for_telemetry',
'gopls.mem_stats',
'gopls.regenerate_cgo',
'gopls.remove_dependency',
'gopls.reset_go_mod_diagnostics',
'gopls.run_go_work_command',
'gopls.run_govulncheck',
'gopls.run_tests',
'gopls.start_debugging',
'gopls.start_profile',
'gopls.stop_profile',
'gopls.test',
'gopls.tidy',
'gopls.toggle_gc_details',
'gopls.update_go_sum',
'gopls.upgrade_dependency',
'gopls.vendor',
'gopls.views',
'gopls.workspace_stats',
}
local gopls_with_result = {
'gopls.gc_details',
'gopls.list_known_packages',
'gopls.list_imports',
}
local gopls_with_edit = {
'gopls.add_dependency',
'gopls.add_import',
'gopls.check_upgrades',
'gopls.change_signature',
}
local function check_for_error(msg)
if msg ~= nil and type(msg[1]) == 'table' then
for k, v in pairs(msg[1]) do
if k == 'error' then
log('LSP error:', v.message)
vim.notify(vim.inspect(v.message), vim.log.levels.INFO)
break
end
end
end
end
local function apply_changes(cmd, args)
local bufnr = vim.api.nvim_get_current_buf()
local clients = vim.lsp.get_clients({ bufnr = bufnr })
local gopls
for _, c in ipairs(clients) do
if c.name == 'gopls' then
gopls = c
break
end
end
if not gopls then
vim.notify('gopls not found', vim.log.levels.INFO)
return
end
log('applying changes', cmd, args)
gopls.request('workspace/executeCommand', {
command = cmd,
arguments = args,
}, function(_err, changes)
if _err then
vim.notify(vim.inspect(_err), vim.log.levels.INFO)
log('error', _err)
end
if not changes or not changes.documentChanges then
log('no resolved changes', changes)
return
end
log('applying changes', changes)
vim.lsp.util.apply_workspace_edit(changes, gopls.offset_encoding)
end, bufnr)
end
for _, gopls_cmd in ipairs(gopls_cmds) do
local gopls_cmd_name = string.sub(gopls_cmd, #'gopls.' + 1)
cmds[gopls_cmd_name] = function(arg, callback)
-- get gopls client
local b = vim.api.nvim_get_current_buf()
local clients = vim.lsp.get_clients({ bufnr = b })
local gopls
for _, c in ipairs(clients) do
if c.name == 'gopls' then
gopls = c
break
end
end
if gopls == nil then
vim.notify('gopls not found', vim.log.levels.INFO)
return
end
local uri = vim.uri_from_bufnr(b)
local arguments = { { URI = uri } }
local ft = vim.bo.filetype
if
ft == 'gomod'
or ft == 'gosum'
or gopls_cmd_name == 'tidy'
or gopls_cmd_name == 'update_go_sum'
then
arguments[1].URIs = { uri }
arguments[1].URI = nil
end
arguments = { vim.tbl_extend('keep', arguments[1], arg or {}) }
log(gopls_cmd_name, arguments)
if vim.tbl_contains(gopls_with_result, gopls_cmd) then
local resp = gopls.request_sync('workspace/executeCommand', {
command = gopls_cmd,
arguments = arguments,
}, 2000, b)
check_for_error(resp)
log(resp)
return resp
end
if vim.tbl_contains(gopls_with_edit, gopls_cmd) then
apply_changes(gopls_cmd, arguments)
else
vim.schedule(function()
-- it likely to be a edit command
-- but execute_command may not working in the way gppls want
local resp = gopls.request('workspace/executeCommand', {
command = gopls_cmd,
arguments = arguments,
}, function(err, result)
if err then
log('error', err)
vim.notify(vim.inspect(err), vim.log.levels.INFO)
return
end
check_for_error(result)
if callback then
callback(result)
end
end, b)
end)
end
end
end
M.cmds = cmds
M.import = function(path)
cmds.add_import({
ImportPath = path,
}, require('go.format').gofmt)
end
M.change_signature = function()
local params = vim.lsp.util.make_range_params()
if params.range['start'].character == params.range['end'].character then
log('please select a function signature', params.range)
-- return
end
local lsp_params = {
RemoveParameter = {
uri = params.textDocument.uri,
range = params.range,
},
ResolveEdits = true,
}
log(lsp_params)
cmds.change_signature(lsp_params)
end
M.list_imports = function(path)
path = path or vim.fn.expand('%:p')
local resp = cmds.list_imports({
URI = path,
})
local result = {}
for _, v in pairs(resp) do
if v.result then
for k, val in pairs(v.result) do
result[k] = {}
for _, imp in ipairs(val) do
if imp.Name and imp.Name ~= '' then
table.insert(result[k], imp.Name .. ':' .. imp.Path)
else
table.insert(result[k], imp.Path)
end
end
end
end
end
return result, resp
end
M.list_pkgs = function()
local resp = cmds.list_known_packages() or {}
local pkgs = {}
for _, response in pairs(resp) do
if response.result ~= nil then
pkgs = response.result.Packages
break
end
end
return pkgs
end
M.tidy = function()
cmds.tidy()
end
-- check_for_upgrades({Modules = {'package'}})
function M.version()
local cache_dir = vfn.stdpath('cache')
local path = string.format('%s%sversion.txt', cache_dir, utils.sep())
local cfg = _GO_NVIM_CFG or {}
local gopls = cfg.gopls_cmd or { 'gopls' }
if vfn.executable(gopls[1]) == 0 then
vim.notify('gopls not found', vim.log.levels.WARN)
return
end
vfn.jobstart({ gopls[1], 'version' }, {
on_stdout = function(_, data, _)
local msg = ''
if type(data) == 'table' and #data > 0 then
data = table.concat(data, ' ')
end
if #data > 1 then
msg = msg .. data
end
log(msg)
local version = string.match(msg, '%s+v([%d%.]+)%s+')
if version == nil then
log(version, msg)
return
end
local f = io.open(path, 'w+')
if f == nil then
return
end
f:write(version)
f:close()
log(version)
end,
})
local f = io.open(path, 'r')
if f == nil then
local version_cmd = gopls[1] .. ' version'
return vfn.system(version_cmd):match('%s+v([%d%.]+)%s+')
end
local version = f:read('*l')
f:close()
log(version)
return version
end
local get_current_gomod = function()
local file = io.open('go.mod', 'r')
if file == nil then
return nil
end
local first_line = file:read()
local mod_name = first_line:gsub('module ', '')
file:close()
return mod_name
end
local function get_build_flags()
local get_build_tags = require('go.gotest').get_build_tags
local tags = get_build_tags()
if tags then
log(vim.inspect(tags))
return tags
else
return nil
end
end
local range_format = 'textDocument/rangeFormatting'
local formatting = 'textDocument/formatting'
M.setups = function()
local update_in_insert = _GO_NVIM_CFG.diagnostic.update_in_insert or false
local diagTrigger = update_in_insert and 'Edit' or 'Save'
local diagDelay = update_in_insert and '1s' or '250ms'
local setups = {
capabilities = {
textDocument = {
completion = {
completionItem = {
commitCharactersSupport = true,
deprecatedSupport = true,
documentationFormat = { 'markdown', 'plaintext' },
preselectSupport = true,
insertReplaceSupport = true,
labelDetailsSupport = true,
snippetSupport = vim.snippet and true or false,
resolveSupport = {
properties = {
'edit',
'documentation',
'details',
'additionalTextEdits',
},
},
},
completionList = {
itemDefaults = {
'editRange',
'insertTextFormat',
'insertTextMode',
'data',
},
},
contextSupport = true,
dynamicRegistration = true,
},
},
},
filetypes = { 'go', 'gomod', 'gosum', 'gotmpl', 'gohtmltmpl', 'gotexttmpl' },
message_level = vim.lsp.protocol.MessageType.Error,
cmd = {
'gopls', -- share the gopls instance if there is one already
'-remote.debug=:0',
},
root_dir = function(fname)
local has_lsp, lspconfig = pcall(require, 'lspconfig')
if has_lsp then
local util = lspconfig.util
return util.root_pattern('go.work', 'go.mod', '.git')(fname) or util.path.dirname(fname)
end
end,
flags = { allow_incremental_sync = true, debounce_text_changes = 500 },
settings = {
gopls = {
-- more settings: https://github.com/golang/tools/blob/master/gopls/doc/settings.md
-- https://github.com/golang/tools/blob/master/gopls/doc/analyzers.md
-- not supported
analyses = {
-- check analyzers for default values
-- leeave most of them to default
-- shadow = true,
-- unusedvariable = true,
useany = true,
},
codelenses = {
generate = true, -- show the `go generate` lens.
gc_details = true, -- Show a code lens toggling the display of gc's choices.
test = true,
tidy = true,
vendor = true,
regenerate_cgo = true,
upgrade_dependency = true,
},
hints = vim.empty_dict(),
usePlaceholders = true,
completeUnimported = true,
staticcheck = true,
matcher = 'Fuzzy',
-- check if diagnostic update_in_insert is set
diagnosticsDelay = diagDelay,
diagnosticsTrigger = diagTrigger,
symbolMatcher = 'FastFuzzy',
semanticTokens = true,
noSemanticString = true, -- disable semantic string tokens so we can use treesitter highlight injection
vulncheck = 'Imports',
['local'] = get_current_gomod(),
gofumpt = _GO_NVIM_CFG.lsp_gofumpt or false, -- true|false, -- turn on for new repos, gofmpt is good but also create code turmoils
buildFlags = { '-tags', 'integration' },
},
},
-- NOTE: it is important to add handler to formatting handlers
-- the async formatter will call these handlers when gopls respond
-- without these handlers, the file will not be saved
handlers = {
[range_format] = function(...)
vim.lsp.handlers[range_format](...)
if vfn.getbufinfo('%')[1].changed == 1 then
vim.cmd('noautocmd write')
end
end,
[formatting] = function(...)
vim.lsp.handlers[formatting](...)
if vfn.getbufinfo('%')[1].changed == 1 then
vim.cmd('noautocmd write')
end
end,
},
}
local tags = get_build_flags()
if tags and tags ~= '' then
setups.settings.gopls.buildFlags = { tags }
end
if vim.fn.has('nvim-0.10') then
setups.settings.gopls = vim.tbl_deep_extend('keep', setups.settings.gopls, {
hints = {
assignVariableTypes = true,
compositeLiteralFields = true,
compositeLiteralTypes = true,
constantValues = true,
functionTypeParameters = true,
parameterNames = true,
rangeVariableTypes = true,
},
})
end
return setups
end
return M
--[[
as of 2024-03-01
codeActionProvider = {
codeActionKinds = { "quickfix", "refactor.extract", "refactor.inline", "refactor.rewrite", "source.fixAll", "source.organizeImports" },
resolveProvider = true
},
executeCommandProvider = {
commands = { "gopls.add_dependency", "gopls.add_import", "gopls.add_telemetry_counters", "gopls.apply_fix", "gopls.change_signature", "gopls.check_upgrades", "gopls.diagnose_files", "gopls.edit_go_directive", "gopls.fetch_vulncheck_result", "gopls.
gc_details", "gopls.generate", "gopls.go_get_package", "gopls.list_imports", "gopls.list_known_packages", "gopls.maybe_prompt_for_telemetry", "gopls.mem_stats", "gopls.regenerate_cgo", "gopls.remove_dependency", "gopls.reset_go_mod_diagnostics", "gopls.run
_go_work_command", "gopls.run_govulncheck", "gopls.run_tests", "gopls.start_debugging", "gopls.start_profile", "gopls.stop_profile", "gopls.test", "gopls.tidy", "gopls.toggle_gc_details", "gopls.update_go_sum", "gopls.upgrade_dependency", "gopls.vendor", "
gopls.views", "gopls.workspace_stats" }
},
]]
--