# `Minga.RenderModel.Window.DocumentHighlight`
[🔗](https://github.com/jsmestad/minga/blob/main/lib/minga/render_model/window/document_highlight.ex#L1)

A document highlight range in display coordinates for the GUI protocol.

Sent as part of the `gui_window_content` (0x80) opcode. The kind field
distinguishes text, read, and write references for distinct styling.

# `kind`

```elixir
@type kind() :: :text | :read | :write
```

Highlight kind matching the LSP spec.

# `t`

```elixir
@type t() :: %Minga.RenderModel.Window.DocumentHighlight{
  end_col: non_neg_integer(),
  end_row: non_neg_integer(),
  kind: kind(),
  start_col: non_neg_integer(),
  start_row: non_neg_integer()
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
