blob: 83701662393e142b4888513b38691b2e9c128891 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- @param lsp LSP
--- @param params table
--- @return boolean
return function (lsp, params)
local doc = params.textDocument
local change = params.contentChanges
local ws = lsp:findWorkspaceFor(doc.uri)
if ws then
local path = ws:relativePathByUri(doc.uri)
if not path or not ws:isLuaFile(path) then
return
end
if not lsp:isOpen(doc.uri) and ws.gitignore(path:string()) then
return
end
end
-- TODO 支持差量更新
lsp:saveText(doc.uri, doc.version, change[1].text)
return true
end
|