diff src/globals.h @ 29218:48b36959a4fc v8.2.5128

patch 8.2.5128: syntax disabled when using synID() in searchpair() skip expr Commit: https://github.com/vim/vim/commit/6f0cf62df97ee7c9d26b550adaf469be7fe1e09a Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 19 12:27:45 2022 +0100 patch 8.2.5128: syntax disabled when using synID() in searchpair() skip expr Problem: Syntax highlighting disabled when using synID() in searchpair() skip expression and it times out. (Jaehwang Jung) Solution: Add the redrawtime_limit_set flag. (closes #10562)
author Bram Moolenaar <Bram@vim.org>
date Sun, 19 Jun 2022 13:30:03 +0200
parents ff98d9c228d4
children fba9e366ced4
line wrap: on
line diff
--- a/src/globals.h
+++ b/src/globals.h
@@ -1228,6 +1228,10 @@ EXTERN int	do_redraw INIT(= FALSE);    /
 #ifdef FEAT_DIFF
 EXTERN int	need_diff_redraw INIT(= 0); // need to call diff_redraw()
 #endif
+#ifdef FEAT_RELTIME
+// flag set when 'redrawtime' timeout has been set
+EXTERN int	redrawtime_limit_set INIT(= FALSE);
+#endif
 
 EXTERN int	need_highlight_changed INIT(= TRUE);