mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:8.1.1717: last char in menu popup window highlighted
Problem: Last char in menu popup window highlighted. Solution: Do not highlight an extra character twice.f914a33c9c
N/A patches for version.c: vim-patch:8.1.0746: highlighting not updated with conceal and 'cursorline' Problem: Highlighting not updated with conceal and 'cursorline'. (Jason Franklin) Solution: Do not use a zero line number. Check if 'conceallevel' is set for the current window.bbee8d5122
This commit is contained in:
parent
ca6815115c
commit
d5bc62a5ce
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user