summaryrefslogtreecommitdiff
path: root/script/method/textDocument/didClose.lua
blob: 3cfd98e8ee34721d07e71f633d9775de58805edf (plain)
1
2
3
4
5
6
7
8
--- @param lsp LSP
--- @param params table
--- @return boolean
return function (lsp, params)
    local doc = params.textDocument
    lsp:close(doc.uri)
    return true
end