chipContent is the payload behind a chip, kept in store by id so the visible label can collapse while the real text survives for Value() and replay.
| 34 | // chipContent is the payload behind a chip, kept in store by id so the visible |
| 35 | // label can collapse while the real text survives for Value() and replay. |
| 36 | type chipContent struct { |
| 37 | content string |
| 38 | lines int |
| 39 | } |
| 40 | |
| 41 | // chipSpan marks the rune range [start, end) in the value holding a chip's |
| 42 | // label. Reconciled after any key event that can shift the value. |
nothing calls this directly
no outgoing calls
no test coverage detected