diff options
Diffstat (limited to 'src/nvim/extmark_defs.h')
-rw-r--r-- | src/nvim/extmark_defs.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/nvim/extmark_defs.h b/src/nvim/extmark_defs.h index 6615551df4..d1bc13f9f2 100644 --- a/src/nvim/extmark_defs.h +++ b/src/nvim/extmark_defs.h @@ -3,13 +3,6 @@ #include "klib/kvec.h" #include "nvim/types.h" -typedef struct { - char *text; - int hl_id; -} VirtTextChunk; - -typedef kvec_t(VirtTextChunk) VirtText; - typedef struct undo_object ExtmarkUndoObject; typedef kvec_t(ExtmarkUndoObject) extmark_undo_vec_t; @@ -21,9 +14,3 @@ typedef enum { kExtmarkNoUndo, // Operation should not be reversible kExtmarkUndoNoRedo, // Operation should be undoable, but not redoable } ExtmarkOp; - -typedef enum { - kDecorLevelNone = 0, - kDecorLevelVisible = 1, - kDecorLevelVirtLine = 2, -} DecorLevel; |