diff options
Diffstat (limited to 'src')
| -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 7c42f29a90..ea2b14c326 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -3690,7 +3690,7 @@ win_line (      }      // At end of the text line or just after the last character. -    if (c == NUL) { +    if (c == NUL && eol_hl_off == 0) {        long prevcol = (long)(ptr - line) - 1;        // we're not really at that column when skipping some text | 
