summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-04-07 13:58:04 +0100
committerBram Moolenaar <Bram@vim.org>2022-04-07 13:58:04 +0100
commit6d4e725a3447af6f69305fdc9f1e1ff8d82e3863 (patch)
tree2b8acbed1a0774ac7def27ea696f7ad59e93a6d7 /src/globals.h
parentf26c16144ddb27642c09f2cf5271afd163b36306 (diff)
patch 8.2.4705: jump list marker disappearsv8.2.4705
Problem: Jump list marker disappears. Solution: Reset reg_executing later. (closes #10111, closes #10100)
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/globals.h b/src/globals.h
index f690efffc4..da1ff76391 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -1123,6 +1123,8 @@ EXTERN int ex_no_reprint INIT(= FALSE); // no need to print after z or p
EXTERN int reg_recording INIT(= 0); // register for recording or zero
EXTERN int reg_executing INIT(= 0); // register being executed or zero
+// Flag set when peeking a character and found the end of executed register
+EXTERN int pending_end_reg_executing INIT(= 0);
// Set when a modifyOtherKeys sequence was seen, then simplified mappings will
// no longer be used.