diff options
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index eb2780ce7a..a0fb2d9e36 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -3980,8 +3980,8 @@ static char *set_bool_option(const int opt_idx, char_u *const varp, /* Enable Arabic shaping (major part of what Arabic requires) */ if (!p_arshape) { - p_arshape = TRUE; - redraw_later_clear(); + p_arshape = true; + redraw_all_later(NOT_VALID); } } |