diff options
Diffstat (limited to 'src/nvim/screen.c')
-rw-r--r-- | src/nvim/screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c index 5eaebfbf7c..811f265902 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -3461,7 +3461,7 @@ win_line ( /* tab amount depends on current column */ tab_len = (int)wp->w_buffer->b_p_ts - vcol % (int)wp->w_buffer->b_p_ts - 1; - if (!wp->w_p_lbr) { + if (!wp->w_p_lbr || !wp->w_p_list) { n_extra = tab_len; } else { char_u *p; |