diff options
author | Chris Lucas <chris@chrisjlucas.com> | 2016-10-29 17:04:13 -0700 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2016-12-28 14:57:38 -0500 |
commit | 99a8cd3be0509e97b649edc1599bfb74bf2b4802 (patch) | |
tree | 77ef2a023d458ef97b044354c742269617874e58 /src/nvim/buffer_defs.h | |
parent | d4671048162be61096cfcf6beef917166afa5267 (diff) | |
download | rneovim-99a8cd3be0509e97b649edc1599bfb74bf2b4802.tar.gz rneovim-99a8cd3be0509e97b649edc1599bfb74bf2b4802.tar.bz2 rneovim-99a8cd3be0509e97b649edc1599bfb74bf2b4802.zip |
vim-patch:7.4.2201
Problem: The sign column disappears when the last sign is deleted.
Solution: Add the 'signcolumn' option. (Christian Brabandt)
https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index 0418a737eb..fda906fc59 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -237,6 +237,8 @@ typedef struct { # define w_p_crb w_onebuf_opt.wo_crb /* 'cursorbind' */ int wo_crb_save; /* 'cursorbind' state saved for diff mode*/ # define w_p_crb_save w_onebuf_opt.wo_crb_save + char_u *wo_scl; +# define w_p_scl w_onebuf_opt.wo_scl /* 'signcolumn' */ int wo_scriptID[WV_COUNT]; /* SIDs for window-local options */ # define w_p_scriptID w_onebuf_opt.wo_scriptID |