diff options
author | Luuk van Baal <luukvbaal@gmail.com> | 2023-04-01 03:55:43 +0200 |
---|---|---|
committer | Luuk van Baal <luukvbaal@gmail.com> | 2023-04-01 04:23:25 +0200 |
commit | e3a3d300636872f786f0c8a338ed1a3749d0a1f6 (patch) | |
tree | e8af5a33595eb360f0f8ef6a2d7ce309b3fdce83 /src/nvim/buffer_defs.h | |
parent | 83bfd94d1df5eecb8e4069a227c7d24598636d63 (diff) | |
download | rneovim-e3a3d300636872f786f0c8a338ed1a3749d0a1f6.tar.gz rneovim-e3a3d300636872f786f0c8a338ed1a3749d0a1f6.tar.bz2 rneovim-e3a3d300636872f786f0c8a338ed1a3749d0a1f6.zip |
fix(ui): recording change doesn't trigger statusline redraw
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index 4bdf5aac64..c808909942 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -1288,6 +1288,7 @@ struct window_S { int w_stl_topfill; // topfill when last redrawn char w_stl_empty; // true if elements show 0-1 (empty line) int w_stl_state; // State when last redrawn + int w_stl_recording; // reg_recording when last redrawn int w_alt_fnum; // alternate file (for # and CTRL-^) |