summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-02-25 21:52:33 +0000
committerBram Moolenaar <Bram@vim.org>2006-02-25 21:52:33 +0000
commit5c8837f9d7785c65c40f1485a779cc886750a5e9 (patch)
tree4f5ecb382974d741127e70d01975ee9046a5a90c /src/globals.h
parentc542aef58df8ea69708d29d6fcbfa44f5eb3481d (diff)
updated for version 7.0207
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/globals.h b/src/globals.h
index 1263e81838..8acd3696dd 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -438,6 +438,12 @@ EXTERN int force_menu_update INIT(= FALSE);
# ifdef FEAT_GUI_TABLINE
/* Tab in tab pages line just selected, set by check_termcode() */
EXTERN int current_tab;
+
+/* Menu entry in tab pages line menu just selected, set by check_termcode() */
+EXTERN int current_tabmenu;
+# define TABLINE_MENU_CLOSE 1
+# define TABLINE_MENU_NEW 2
+# define TABLINE_MENU_OPEN 3
# endif
/* Scrollbar moved and new value, set by check_termcode() */
@@ -1200,6 +1206,11 @@ EXTERN option_table_T printer_opts[OPT_PRINT_NUM_OPTIONS]
# define PRT_UNIT_NAMES {"pc", "in", "mm", "pt"}
#endif
+#if defined(FEAT_PRINTER) || defined(FEAT_WINDOWS)
+/* Page number used for %N in 'pageheader' and 'guitablabel'. */
+EXTERN linenr_T printer_page_num;
+#endif
+
#ifdef FEAT_XCLIPBOARD
EXTERN char *xterm_display INIT(= NULL); /* xterm display name; points
into argv[] */