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
|
local proto = require 'proto'
local nonil = require 'without-check-nil'
local client = require 'client'
local config = require 'config'
local isEnable = false
local function allWords()
local str = [[abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.:('"[,#*@|=-{ ]]
local list = {'\t', '\n'}
for c in str:gmatch '.' do
list[#list+1] = c
end
return list
end
local function enable()
if isEnable then
return
end
nonil.enable()
if not client.info.capabilities.textDocument.completion.dynamicRegistration then
return
end
nonil.disable()
isEnable = true
log.debug('Enable completion.')
proto.request('client/registerCapability', {
registrations = {
{
id = 'completion',
method = 'textDocument/completion',
registerOptions = {
resolveProvider = true,
triggerCharacters = allWords(),
},
},
}
})
end
local function disable()
if not isEnable then
return
end
nonil.enable()
if not client.info.capabilities.textDocument.completion.dynamicRegistration then
return
end
nonil.disable()
isEnable = false
log.debug('Disable completion.')
proto.request('client/unregisterCapability', {
unregisterations = {
{
id = 'completion',
method = 'textDocument/completion',
},
}
})
end
config.watch(function (key, value)
if key == 'Lua.completion.enable' then
if value == true then
enable()
else
disable()
end
end
end)
return {
enable = enable,
disable = disable,
allWords = allWords,
}
|