diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-04-07 21:13:09 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-04-07 21:42:07 +0800 |
commit | 2a574f7aaaf5cd0803faa9e4337bf3e21e8b8d2a (patch) | |
tree | 25196ecabe19a4d834e79a48ea54115c8d4579f1 /src/nvim/ex_docmd.h | |
parent | dc9e436986bec15b027c2a8d78782f514c046a8b (diff) | |
download | rneovim-2a574f7aaaf5cd0803faa9e4337bf3e21e8b8d2a.tar.gz rneovim-2a574f7aaaf5cd0803faa9e4337bf3e21e8b8d2a.tar.bz2 rneovim-2a574f7aaaf5cd0803faa9e4337bf3e21e8b8d2a.zip |
fix(input): fix clearing of reg_executing
vim-patch:8.2.4705
Diffstat (limited to 'src/nvim/ex_docmd.h')
-rw-r--r-- | src/nvim/ex_docmd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/ex_docmd.h b/src/nvim/ex_docmd.h index be9f97e27d..874e0e599e 100644 --- a/src/nvim/ex_docmd.h +++ b/src/nvim/ex_docmd.h @@ -29,6 +29,7 @@ typedef struct { bool save_finish_op; long save_opcount; int save_reg_executing; + bool save_pending_end_reg_executing; tasave_T tabuf; } save_state_T; |