1
0
forked from aniani/vim

patch 9.0.1171: screen is not redrawn after using setcellwidths()

Problem:    Screen is not redrawn after using setcellwidths().
Solution:   Redraw the screen when the cell widths have changed. (Yasuhiro
            Matsumoto, closes #11800)
This commit is contained in:
Yasuhiro Matsumoto
2023-01-10 16:03:08 +00:00
committed by Bram Moolenaar
parent 523f22d577
commit 2bc849ff81
5 changed files with 32 additions and 0 deletions

View File

@@ -5742,6 +5742,7 @@ f_setcellwidths(typval_T *argvars, typval_T *rettv UNUSED)
}
vim_free(cw_table_save);
redraw_all_later(UPD_CLEAR);
}
void