mirror of
https://github.com/neovim/neovim.git
synced 2025-10-04 17:06:30 +00:00
fix(extmarks): redraw line on adding/removing conceal (#27463)
This commit is contained in:
@@ -121,7 +121,8 @@ void decor_redraw(buf_T *buf, int row1, int row2, int col1, DecorInline decor)
|
||||
|
||||
void decor_redraw_sh(buf_T *buf, int row1, int row2, DecorSignHighlight sh)
|
||||
{
|
||||
if (sh.hl_id || (sh.url != NULL) || (sh.flags & (kSHIsSign|kSHSpellOn|kSHSpellOff))) {
|
||||
if (sh.hl_id || (sh.url != NULL)
|
||||
|| (sh.flags & (kSHIsSign | kSHSpellOn | kSHSpellOff | kSHConceal))) {
|
||||
if (row2 >= row1) {
|
||||
redraw_buf_range_later(buf, row1 + 1, row2 + 1);
|
||||
}
|
||||
|
Reference in New Issue
Block a user