gitstack

grindlemire/go-tui code browser

1.0 KB Go 35 lines 2026-06-03 · d15bb9f raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package lsp

import (
	"github.com/grindlemire/go-tui/internal/lsp/provider"
	"github.com/grindlemire/go-tui/internal/lsp/schema"
)

// HoverParams represents textDocument/hover parameters.
type HoverParams struct {
	TextDocument TextDocumentIdentifier `json:"textDocument"`
	Position     Position               `json:"position"`
}

// Hover and MarkupContent are type aliases for the canonical definitions
// in the provider package, eliminating duplicate type definitions.
type (
	Hover         = provider.Hover
	MarkupContent = provider.MarkupContent
)

// getElementAttributes returns attribute documentation for an element tag.
// Delegates to the centralized schema. Used by features_test.go.
func getElementAttributes(tag string) []schema.AttributeDef {
	elem := schema.GetElement(tag)
	if elem == nil {
		return nil
	}
	return elem.Attributes
}

// isElementTag returns true if the word is a known element tag.
// Delegates to the centralized schema. Used by features_test.go.
func isElementTag(word string) bool {
	return schema.GetElement(word) != nil
}