mirror of
https://github.com/neovim/neovim.git
synced 2025-10-04 00:46:30 +00:00
feat(decorations): support virtual lines (for now: only one block at a time)
This commit is contained in:
@@ -6,6 +6,16 @@
|
||||
|
||||
typedef struct Decoration Decoration;
|
||||
|
||||
typedef struct {
|
||||
char *text;
|
||||
int hl_id;
|
||||
} VirtTextChunk;
|
||||
|
||||
typedef kvec_t(VirtTextChunk) VirtText;
|
||||
#define VIRTTEXT_EMPTY ((VirtText)KV_INITIAL_VALUE)
|
||||
typedef kvec_t(VirtText) VirtLines;
|
||||
|
||||
|
||||
typedef struct
|
||||
{
|
||||
uint64_t ns_id;
|
||||
|
Reference in New Issue
Block a user