summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorLuuk van Baal <luukvbaal@gmail.com>2022-09-19 16:45:29 +0100
committerBram Moolenaar <Bram@vim.org>2022-09-19 16:45:29 +0100
commitfaf1d412f5e3665021500b528c0e7301eb02bf0b (patch)
tree353052c0b1c65f95ea4413856fb977d1d93d7f6c /src/globals.h
parentc9e4a6f1910dea250af69a3774bcf1fee7e7b8f5 (diff)
patch 9.0.0505: various problems with 'nosplitscroll'v9.0.0505
Problem: Various problems with 'nosplitscroll'. Solution: Fix 'nosplitscroll' problems. (Luuk van Baal, closes #11166)
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/globals.h b/src/globals.h
index 568d3b3c82..fee2951e0a 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -1742,3 +1742,7 @@ EXTERN optmagic_T magic_overruled INIT(= OPTION_MAGIC_NOT_SET);
// Skip win_fix_cursor() call for 'nosplitscroll' when cmdwin is closed.
EXTERN int skip_win_fix_cursor INIT(= FALSE);
#endif
+// Skip win_fix_scroll() call for 'nosplitscroll' when closing tab page.
+EXTERN int skip_win_fix_scroll INIT(= FALSE);
+// Skip update_topline() call while executing win_fix_scroll().
+EXTERN int skip_update_topline INIT(= FALSE);