1
0
forked from aniani/vim

updated for version 7.0197

This commit is contained in:
Bram Moolenaar
2006-02-14 22:29:30 +00:00
parent f52c725c47
commit 1d2ba7fa85
47 changed files with 1782 additions and 740 deletions

View File

@@ -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.