diff options
Diffstat (limited to 'src/nvim/decoration.h')
-rw-r--r-- | src/nvim/decoration.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/nvim/decoration.h b/src/nvim/decoration.h index 95c9655742..565279b21b 100644 --- a/src/nvim/decoration.h +++ b/src/nvim/decoration.h @@ -82,7 +82,11 @@ typedef struct { Decoration decor; int attr_id; // cached lookup of decor.hl_id bool virt_text_owned; - int win_col; + /// Screen column to draw the virtual text. + /// When -1, the virtual text may be drawn after deciding where. + /// When -3, the virtual text should be drawn on a later screen line. + /// When INT_MIN, the virtual text should no longer be drawn. + int draw_col; uint64_t ns_id; uint64_t mark_id; } DecorRange; |