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
|
local core = require 'core'
local parser = require 'parser'
local function posToRange(lines, start, finish)
local start_row, start_col = lines:rowcol(start)
local finish_row, finish_col = lines:rowcol(finish)
return {
start = {
line = start_row - 1,
character = start_col - 1,
},
['end'] = {
line = finish_row - 1,
character = finish_col,
},
}
end
local function findStartPos(pos, buf)
local res = nil
for i = pos-1, 1, -1 do
local c = buf:sub(i, i)
if c:find '%a' then
res = i
else
break
end
end
return res
end
local function findWord(position, text)
local word = text
for i = position-1, 1, -1 do
local c = text:sub(i, i)
if not c:find '[%w_]' then
word = text:sub(i+1, position)
break
end
end
return word:match('^([%w_]*)')
end
return function (lsp, params)
local uri = params.textDocument.uri
local text = lsp:getText(uri)
if not text then
return nil
end
local lines = parser:lines(text, 'utf8')
-- lua是从1开始的,因此都要+1
local position = lines:position(params.position.line + 1, params.position.character + 1)
local word = findWord(position, text)
local startPos = findStartPos(position, text)
local vm = lsp:getVM(uri)
if not vm or not startPos then
vm = lsp:loadVM(uri)
if not vm then
return nil
end
end
startPos = startPos or position
local items = core.completion(vm, startPos, word)
if not items or #items == 0 then
vm = lsp:loadVM(uri)
if not vm then
return nil
end
startPos = startPos or position
items = core.completion(vm, startPos, word)
if not items or #items == 0 then
return nil
end
end
for i, item in ipairs(items) do
item.sortText = ('%04d'):format(i)
if item.textEdit then
item.textEdit.range = posToRange(lines, item.textEdit.start, item.textEdit.finish)
item.textEdit.start = nil
item.textEdit.finish = nil
end
end
local response = {
isIncomplete = false,
items = items,
}
return response
end
|