mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 23:15:26 +02:00
17 lines
291 B
Go
17 lines
291 B
Go
package shared
|
|
|
|
import (
|
|
protocol "github.com/tliron/glsp/protocol_3_16"
|
|
)
|
|
|
|
type LanguageOverwrite struct {
|
|
Language SupportedLanguage
|
|
|
|
// The start of the overwrite
|
|
Raw string
|
|
Line uint32
|
|
Character uint32
|
|
}
|
|
|
|
var LanguagesOverwrites = map[protocol.DocumentUri]LanguageOverwrite{}
|