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
|
local proto = require 'proto'
local define = require 'proto.define'
local client = require 'provider.client'
local json = require "json"
local isEnable = false
local function toArray(map)
local array = {}
for k in pairs(map) do
array[#array+1] = k
end
table.sort(array, function (a, b)
return map[a] < map[b]
end)
return array
end
local function enable()
if isEnable then
return
end
if not client.info.capabilities.textDocument.semanticTokens then
return
end
isEnable = true
log.debug('Enable semantic tokens.')
proto.awaitRequest('client/registerCapability', {
registrations = {
{
id = 'semantic-tokens',
method = 'textDocument/semanticTokens',
registerOptions = {
legend = {
tokenTypes = toArray(define.TokenTypes),
tokenModifiers = toArray(define.TokenModifiers),
},
range = true,
full = false,
},
},
}
})
end
local function disable()
if not isEnable then
return
end
isEnable = false
log.debug('Disable semantic tokens.')
proto.awaitRequest('client/unregisterCapability', {
unregisterations = {
{
id = 'semantic-tokens',
method = 'textDocument/semanticTokens',
},
}
})
end
local function refresh()
log.debug('Refresh semantic tokens.')
proto.notify('workspace/semanticTokens/refresh', json.null)
end
return {
enable = enable,
disable = disable,
refresh = refresh,
}
|