vim-patch:7.4.2201

Problem:    The sign column disappears when the last sign is deleted.
Solution:   Add the 'signcolumn' option. (Christian Brabandt)

95ec9d6a6a
This commit is contained in:
Chris Lucas
2016-10-29 17:04:13 -07:00
committed by James McCoy
parent d467104816
commit 99a8cd3be0
10 changed files with 55 additions and 22 deletions

View File

@@ -5708,7 +5708,7 @@ comp_textwidth (
textwidth -= 1;
textwidth -= curwin->w_p_fdc;
if (curwin->w_buffer->b_signlist != NULL) {
if (signcolumn_on(curwin)) {
textwidth -= 1;
}