summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-08-12 18:29:59 +0200
committerBram Moolenaar <Bram@vim.org>2016-08-12 18:29:59 +0200
commit95ec9d6a6ab3117d60ff638670a803d43974ba51 (patch)
treec4bb7a90165db973560e11a681665cce6c60e8d3 /src/structs.h
parentd823fa910cca43fec3c31c030ee908a14c272640 (diff)
downloadvim-git-95ec9d6a6ab3117d60ff638670a803d43974ba51.tar.gz
patch 7.4.2201v7.4.2201
Problem: The sign column disappears when the last sign is deleted. Solution: Add the 'signcolumn' option. (Christian Brabandt)
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h
index b56282fc2..2a64471b1 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -263,6 +263,10 @@ typedef struct
int wo_crb_save; /* 'cursorbind' state saved for diff mode*/
# define w_p_crb_save w_onebuf_opt.wo_crb_save
#endif
+#ifdef FEAT_SIGNS
+ char_u *wo_scl;
+# define w_p_scl w_onebuf_opt.wo_scl /* 'signcolumn' */
+#endif
#ifdef FEAT_EVAL
int wo_scriptID[WV_COUNT]; /* SIDs for window-local options */