Mercurial > vim
changeset 6799:45d3208c8754 v7.4.721
patch 7.4.721
Problem: When 'list' is set Visual mode does not highlight anything in
empty lines. (mgaleski)
Solution: Check the value of lcs_eol in another place. (Christian Brabandt)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Mon, 04 May 2015 16:52:01 +0200 |
parents | f1759b3c709f |
children | 9eec9c76181c |
files | src/screen.c src/version.c |
diffstat | 2 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/screen.c +++ b/src/screen.c @@ -4703,7 +4703,7 @@ win_line(wp, lnum, startrow, endrow, noc } } else if (c == NUL - && ((wp->w_p_list && lcs_eol > 0) + && (wp->w_p_list || ((fromcol >= 0 || fromcol_prev >= 0) && tocol > vcol && VIsual_mode != Ctrl_V @@ -4749,7 +4749,7 @@ win_line(wp, lnum, startrow, endrow, noc c_extra = NUL; } } - if (wp->w_p_list) + if (wp->w_p_list && lcs_eol > 0) c = lcs_eol; else c = ' ';