summaryrefslogtreecommitdiff
path: root/server/src/method/textDocument/didClose.lua
blob: 589b212f1ebc51245ae33fbd2476b646cf259905 (plain)
1
2
3
4
5
return function (lsp, params)
    local doc = params.textDocument
    lsp:close(doc.uri)
    return true
end