mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.2.2863: removing a text property does not redraw optimally
Problem: Removing a text property does not redraw optimally. Solution: Only redraw the lines that mithg actually have been changed.
This commit is contained in:
parent
fc643e6016
commit
965c04486c
@ -815,6 +815,8 @@ f_prop_remove(typval_T *argvars, typval_T *rettv)
|
|||||||
linenr_T start = 1;
|
linenr_T start = 1;
|
||||||
linenr_T end = 0;
|
linenr_T end = 0;
|
||||||
linenr_T lnum;
|
linenr_T lnum;
|
||||||
|
linenr_T first_changed = 0;
|
||||||
|
linenr_T last_changed = 0;
|
||||||
dict_T *dict;
|
dict_T *dict;
|
||||||
buf_T *buf = curbuf;
|
buf_T *buf = curbuf;
|
||||||
int do_all;
|
int do_all;
|
||||||
@ -925,6 +927,9 @@ f_prop_remove(typval_T *argvars, typval_T *rettv)
|
|||||||
buf->b_ml.ml_line_len -= sizeof(textprop_T);
|
buf->b_ml.ml_line_len -= sizeof(textprop_T);
|
||||||
--idx;
|
--idx;
|
||||||
|
|
||||||
|
if (first_changed == 0)
|
||||||
|
first_changed = lnum;
|
||||||
|
last_changed = lnum;
|
||||||
++rettv->vval.v_number;
|
++rettv->vval.v_number;
|
||||||
if (!do_all)
|
if (!do_all)
|
||||||
break;
|
break;
|
||||||
@ -932,16 +937,11 @@ f_prop_remove(typval_T *argvars, typval_T *rettv)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (rettv->vval.v_number > 0)
|
if (first_changed > 0)
|
||||||
{
|
{
|
||||||
if (start == 1 && end == buf->b_ml.ml_line_count)
|
changed_lines_buf(buf, first_changed, last_changed + 1, 0);
|
||||||
redraw_buf_later(buf, NOT_VALID);
|
|
||||||
else
|
|
||||||
{
|
|
||||||
changed_lines_buf(buf, start, end + 1, 0);
|
|
||||||
redraw_buf_later(buf, VALID);
|
redraw_buf_later(buf, VALID);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -750,6 +750,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
2863,
|
||||||
/**/
|
/**/
|
||||||
2862,
|
2862,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user