diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-02-14 22:29:30 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-02-14 22:29:30 +0000 |
commit | 1d2ba7fa851f988ea9eab47b7662be243f85ddfa (patch) | |
tree | 5882ec62c5c5c6047021a94e74e4797139944a95 /src/globals.h | |
parent | f52c725c4739f2d3368029d67218d6cae0d87995 (diff) | |
download | vim-git-1d2ba7fa851f988ea9eab47b7662be243f85ddfa.tar.gz |
updated for version 7.0197v7.0197
Diffstat (limited to 'src/globals.h')
-rw-r--r-- | src/globals.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/globals.h b/src/globals.h index 85aeeb95b..57d7d0922 100644 --- a/src/globals.h +++ b/src/globals.h @@ -488,6 +488,7 @@ EXTERN win_T *prevwin INIT(= NULL); /* previous window */ # define W_NEXT(wp) NULL # define FOR_ALL_WINDOWS(wp) wp = curwin; #endif + EXTERN win_T *curwin; /* currently active window */ /* @@ -496,6 +497,15 @@ EXTERN win_T *curwin; /* currently active window */ */ EXTERN frame_T *topframe; /* top of the window frame tree */ +#ifdef FEAT_WINDOWS +/* + * Tab pages are nothing more than alternative topframes. "first_tabpage" + * points to the first one in the list, "topframe" is the current one. + */ +EXTERN tabpage_T *first_tabpage; +EXTERN int redraw_tabpage INIT(= FALSE); /* redraw tab pages line */ +#endif + /* * All buffers are linked in a list. 'firstbuf' points to the first entry, * 'lastbuf' to the last entry and 'curbuf' to the currently active buffer. |