summaryrefslogtreecommitdiff
path: root/src/method/textDocument/didClose.lua
blob: 3dcbd7d74e11feadddd2526d46c3c0af41fe1f31 (plain)
1
2
3
4
5
6
return function (lsp, params)
    local doc = params.textDocument
    log.debug('关闭文件:', doc.uri)
    lsp:removeText(doc.uri, doc.version)
    return true
end