summaryrefslogtreecommitdiff
path: root/src/normal.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-01-11 20:45:36 +0100
committerBram Moolenaar <Bram@vim.org>2019-01-11 20:45:36 +0100
commit535d5b653a1eddf49ee11dc9639c5355ef023301 (patch)
tree108a023a948f57b7620d2cad3c4931c58f21706c /src/normal.c
parent465e8b5985908596261cef9d671024ed8ded1ce3 (diff)
downloadvim-git-535d5b653a1eddf49ee11dc9639c5355ef023301.tar.gz
patch 8.1.0726: redrawing specifically for conceal featurev8.1.0726
Problem: Redrawing specifically for conceal feature. Solution: Use generic redrawing methods.
Diffstat (limited to 'src/normal.c')
-rw-r--r--src/normal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/normal.c b/src/normal.c
index 9ee0eeffb..c973fa12e 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -8512,7 +8512,7 @@ n_opencmd(cmdarg_T *cap)
{
#ifdef FEAT_CONCEAL
if (curwin->w_p_cole > 0 && oldline != curwin->w_cursor.lnum)
- update_single_line(curwin, oldline);
+ redrawWinline(curwin, oldline);
#endif
/* When '#' is in 'cpoptions' ignore the count. */
if (vim_strchr(p_cpo, CPO_HASH) != NULL)