mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-19 07:25:27 +02:00
13 lines
273 B
Go
13 lines
273 B
Go
package lsp
|
|
|
|
import (
|
|
"github.com/tliron/glsp"
|
|
protocol "github.com/tliron/glsp/protocol_3_16"
|
|
)
|
|
|
|
func TextDocumentCompletion(context *glsp.Context, params *protocol.CompletionParams) (any, error) {
|
|
// p := documentParserMap[params.TextDocument.URI]
|
|
|
|
return nil, nil
|
|
}
|