aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/mark_extended_defs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/mark_extended_defs.h')
-rw-r--r--src/nvim/mark_extended_defs.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/nvim/mark_extended_defs.h b/src/nvim/mark_extended_defs.h
index 42d57229f0..565c599d06 100644
--- a/src/nvim/mark_extended_defs.h
+++ b/src/nvim/mark_extended_defs.h
@@ -6,13 +6,13 @@
#include "nvim/lib/kbtree.h"
#include "nvim/lib/kvec.h"
-struct ExtMarkLine;
+struct ExtmarkLine;
typedef struct Extmark
{
uint64_t ns_id;
uint64_t mark_id;
- struct ExtMarkLine *line;
+ struct ExtmarkLine *line;
colnr_T col;
} Extmark;
@@ -37,14 +37,14 @@ static inline int extmark_cmp(Extmark a, Extmark b)
#define markitems_cmp(a, b) (extmark_cmp((a), (b)))
KBTREE_INIT(markitems, Extmark, markitems_cmp, 10)
-typedef struct ExtMarkLine
+typedef struct ExtmarkLine
{
linenr_T lnum;
kbtree_t(markitems) items;
-} ExtMarkLine;
+} ExtmarkLine;
#define EXTMARKLINE_CMP(a, b) (kb_generic_cmp((a)->lnum, (b)->lnum))
-KBTREE_INIT(extmarklines, ExtMarkLine *, EXTMARKLINE_CMP, 10)
+KBTREE_INIT(extmarklines, ExtmarkLine *, EXTMARKLINE_CMP, 10)
typedef struct undo_object ExtmarkUndoObject;