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
|
local proto = require 'proto'
local nonil = require 'without-check-nil'
local client = require 'provider.client'
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.awaitRequest('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.awaitRequest('client/unregisterCapability', {
unregisterations = {
{
id = 'completion',
method = 'textDocument/completion',
},
}
})
end
return {
enable = enable,
disable = disable,
allWords = allWords,
}
|