aboutsummaryrefslogtreecommitdiff
path: root/src/buffer_defs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer_defs.h')
-rw-r--r--src/buffer_defs.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/buffer_defs.h b/src/buffer_defs.h
index 9d5e75b609..346a402fc2 100644
--- a/src/buffer_defs.h
+++ b/src/buffer_defs.h
@@ -38,6 +38,9 @@ typedef struct memfile memfile_T;
// for synstate_T (needs reg_extmatch_T, win_T and buf_T)
#include "syntax_defs.h"
+// for signlist_T
+#include "sign_defs.h"
+
/*
* The taggy struct is used to store the information about a :tag command.
*/
@@ -700,6 +703,8 @@ struct file_buffer {
synblock_T b_s; /* Info related to syntax highlighting. w_s
* normally points to this, but some windows
* may use a different synblock_T. */
+
+ signlist_T *b_signlist; /* list of signs to draw */
};
/*