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
|
local matcher = require 'matcher'
return function (lsp, params)
local uri = params.textDocument.uri
local newName = params.newName
local vm, lines = lsp:loadText(uri)
if not vm then
return {}
end
-- lua是从1开始的,因此都要+1
local position = lines:position(params.position.line + 1, params.position.character + 1)
local positions = matcher.rename(vm, position, newName)
if not positions then
return {}
end
local TextEdit = {}
for i, position in ipairs(positions) do
local start, finish = position[1], position[2]
local start_row, start_col = lines:rowcol(start)
local finish_row, finish_col = lines:rowcol(finish)
TextEdit[i] = {
newText = newName,
range = {
start = {
line = start_row - 1,
character = start_col - 1,
},
['end'] = {
line = finish_row - 1,
-- 这里不用-1,因为前端期待的是匹配完成后的位置
character = finish_col,
},
}
}
end
local response = {
changes = {
[uri] = TextEdit,
},
}
return response
end
|