mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-19 15:35:28 +02:00
14 lines
319 B
Go
14 lines
319 B
Go
package lsp
|
|
|
|
import (
|
|
shared "config-lsp/handlers/fstab/shared"
|
|
"github.com/tliron/glsp"
|
|
protocol "github.com/tliron/glsp/protocol_3_16"
|
|
)
|
|
|
|
func TextDocumentDidClose(context *glsp.Context, params *protocol.DidCloseTextDocumentParams) error {
|
|
delete(shared.DocumentParserMap, params.TextDocument.URI)
|
|
|
|
return nil
|
|
}
|