diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-03-28 02:09:08 -0400 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-29 20:47:39 -0300 |
commit | d9f5cd6290755b0fc571c89db5f213844cbe9eef (patch) | |
tree | ae8e325f1cc2efbfc79cf59c7cc7f61e8ed38db8 /src/buffer_defs.h | |
parent | 28b3659955d154d04ac8e531b54f1ec32f3136a7 (diff) | |
download | rneovim-d9f5cd6290755b0fc571c89db5f213844cbe9eef.tar.gz rneovim-d9f5cd6290755b0fc571c89db5f213844cbe9eef.tar.bz2 rneovim-d9f5cd6290755b0fc571c89db5f213844cbe9eef.zip |
Re-integrate FEAT_SIGNS code, close #383
- omit FEAT_NETBEANS_INTG and FEAT_SIGN_ICONS
- omit FEAT_GUI blocks
Diffstat (limited to 'src/buffer_defs.h')
-rw-r--r-- | src/buffer_defs.h | 5 |
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 */ }; /* |