Problem: The versplit feature makes the code uneccessary complicated.
Solution: Remove FEAT_VERTSPLIT, always support vertical splits when
FEAT_WINDOWS is defined.
old_curwin = curwin;
old_curtab = curtab;
-#ifdef FEAT_GUI
+# ifdef FEAT_GUI
need_mouse_correct = TRUE;
-#endif
+# endif
/*
* Try closing all windows that are not in the argument list.
buf = wp->w_buffer;
if (buf->b_ffname == NULL
|| (!keep_tabs && buf->b_nwindows > 1)
-#ifdef FEAT_VERTSPLIT
- || wp->w_width != Columns
-#endif
- )
+ || wp->w_width != Columns)
i = opened_len;
else
{
{
wpnext = wp->w_next;
if ((wp->w_buffer->b_nwindows > 1
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
|| ((cmdmod.split & WSP_VERT)
? wp->w_height + wp->w_status_height < Rows - p_ch
- tabline_height()
: wp->w_width != Columns)
-#endif
-#ifdef FEAT_WINDOWS
|| (had_tab > 0 && wp != firstwin)
#endif
) && firstwin != lastwin
&& vim_isbreak(c)
&& !vim_isbreak(s[1])
&& wp->w_p_wrap
-# ifdef FEAT_VERTSPLIT
+# ifdef FEAT_WINDOWS
&& wp->w_width != 0
# endif
)
int width1; /* width of first line (after line number) */
int width2; /* width of further lines */
-#ifdef FEAT_VERTSPLIT
+# ifdef FEAT_WINDOWS
if (wp->w_width == 0) /* there is no border */
return FALSE;
-#endif
+# endif
width1 = W_WIDTH(wp) - win_col_off(wp);
if ((int)vcol < width1 - 1)
return FALSE;
#ifdef FEAT_VIMINFO
"viminfo",
#endif
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
"vertsplit",
#endif
#ifdef FEAT_VIRTUALEDIT
{
sprintf((char *)buf, "%dresize %d|", winnr, wp->w_height);
ga_concat(&ga, buf);
-# ifdef FEAT_VERTSPLIT
sprintf((char *)buf, "vert %dresize %d|", winnr, wp->w_width);
ga_concat(&ga, buf);
-# endif
++winnr;
}
ga_append(&ga, NUL);
check_cursor();
win_new_height(curwin, curwin->w_height);
-# ifdef FEAT_VERTSPLIT
+# ifdef FEAT_WINDOWS
win_new_width(curwin, W_WIDTH(curwin));
# endif
changed_window_setting();
if (wp == NULL)
rettv->vval.v_number = -1;
else
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
rettv->vval.v_number = wp->w_width;
#else
rettv->vval.v_number = Columns;
* specified, the current window is vertically split and
* narrow. */
n = WSP_HELP;
-# ifdef FEAT_VERTSPLIT
if (cmdmod.split == 0 && curwin->w_width != Columns
&& curwin->w_width < 80)
n |= WSP_TOP;
-# endif
if (win_split(0, n) == FAIL)
goto erret;
#else
case 'v': if (checkforcmd(&ea.cmd, "vertical", 4))
{
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
cmdmod.split |= WSP_VERT;
#endif
continue;
int browse_flag = cmdmod.browse;
# endif
-# ifndef FEAT_VERTSPLIT
- if (eap->cmdidx == CMD_vsplit || eap->cmdidx == CMD_vnew)
- {
- ex_ni(eap);
- return;
- }
-# endif
-
# ifdef FEAT_GUI
need_mouse_correct = TRUE;
# endif
{
if (eap->cmdidx == CMD_split)
eap->cmdidx = CMD_new;
-# ifdef FEAT_VERTSPLIT
if (eap->cmdidx == CMD_vsplit)
eap->cmdidx = CMD_vnew;
-# endif
}
# endif
# endif
# ifdef FEAT_BROWSE
if (cmdmod.browse
-# ifdef FEAT_VERTSPLIT
&& eap->cmdidx != CMD_vnew
-# endif
&& eap->cmdidx != CMD_new)
{
# ifdef FEAT_AUTOCMD
;
}
-#ifdef FEAT_GUI
+# ifdef FEAT_GUI
need_mouse_correct = TRUE;
-#endif
+# endif
n = atol((char *)eap->arg);
-#ifdef FEAT_VERTSPLIT
if (cmdmod.split & WSP_VERT)
{
if (*eap->arg == '-' || *eap->arg == '+')
win_setwidth_win((int)n, wp);
}
else
-#endif
{
if (*eap->arg == '-' || *eap->arg == '+')
n += curwin->w_height;
if ((eap->cmdidx == CMD_new
|| eap->cmdidx == CMD_tabnew
|| eap->cmdidx == CMD_tabedit
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
|| eap->cmdidx == CMD_vnew
#endif
) && *eap->arg == NUL)
old_curwin == NULL ? curwin : NULL);
}
else if ((eap->cmdidx != CMD_split
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
&& eap->cmdidx != CMD_vsplit
#endif
)
}
else
{
-# ifdef FEAT_VERTSPLIT
win_redraw_last_status(topframe);
-# else
- lastwin->w_redr_status = TRUE;
-# endif
redraw_statuslines();
}
KeyTyped = skt;
/*
* +windows Multiple windows. Without this there is no help
* window and no status lines.
+ * +vertsplit Vertically split windows.
*/
#ifdef FEAT_SMALL
# define FEAT_WINDOWS
# define FEAT_LISTCMDS
#endif
-/*
- * +vertsplit Vertically split windows.
- */
-#ifdef FEAT_NORMAL
-# define FEAT_VERTSPLIT
-#endif
-#if defined(FEAT_VERTSPLIT) && !defined(FEAT_WINDOWS)
-# define FEAT_WINDOWS
-#endif
-
/*
* +cmdhist Command line history.
*/
# define FEAT_JUMPLIST
#endif
-/* the cmdline-window requires FEAT_VERTSPLIT and FEAT_CMDHIST */
-#if defined(FEAT_VERTSPLIT) && defined(FEAT_CMDHIST)
+/* the cmdline-window requires FEAT_WINDOWS and FEAT_CMDHIST */
+#if defined(FEAT_WINDOWS) && defined(FEAT_CMDHIST)
# define FEAT_CMDWIN
#endif
* +mksession ":mksession" command.
* Requires +windows and +vertsplit.
*/
-#if defined(FEAT_NORMAL) && defined(FEAT_WINDOWS) && defined(FEAT_VERTSPLIT)
+#if defined(FEAT_NORMAL) && defined(FEAT_WINDOWS)
# define FEAT_SESSION
#endif
EXTERN int drag_status_line INIT(= FALSE); /* dragging the status line */
EXTERN int postponed_mouseshape INIT(= FALSE); /* postponed updating the
mouse pointer shape */
-# ifdef FEAT_VERTSPLIT
+# ifdef FEAT_WINDOWS
EXTERN int drag_sep_line INIT(= FALSE); /* dragging vert separator */
# endif
# endif
EXTERN char_u e_wildexpand[] INIT(= N_("E79: Cannot expand wildcards"));
#ifdef FEAT_WINDOWS
EXTERN char_u e_winheight[] INIT(= N_("E591: 'winheight' cannot be smaller than 'winminheight'"));
-# ifdef FEAT_VERTSPLIT
EXTERN char_u e_winwidth[] INIT(= N_("E592: 'winwidth' cannot be smaller than 'winminwidth'"));
-# endif
#endif
EXTERN char_u e_write[] INIT(= N_("E80: Error while writing"));
EXTERN char_u e_zerocount[] INIT(= N_("Zero count"));
gui.scroll_region_bot = arg1;
}
break;
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
case 'V': /* Set vertical scroll region */
if (arg1 < arg2)
{
&& button != MOUSE_DRAG
# ifdef FEAT_MOUSESHAPE
&& !drag_status_line
-# ifdef FEAT_VERTSPLIT
+# ifdef FEAT_WINDOWS
&& !drag_sep_line
# endif
# endif
case GO_RIGHT:
gui.which_scrollbars[SBAR_RIGHT] = TRUE;
break;
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
case GO_VLEFT:
if (win_hasvertsplit())
gui.which_scrollbars[SBAR_LEFT] = TRUE;
sb->max = 1;
sb->top = 0;
sb->height = 0;
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
sb->width = 0;
#endif
sb->status_height = 0;
long val, size, max; /* need 32 bits here */
int which_sb;
int h, y;
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
static win_T *prev_curwin = NULL;
#endif
#ifdef FEAT_WINDOWS
|| sb->top != wp->w_winrow
|| sb->status_height != wp->w_status_height
-# ifdef FEAT_VERTSPLIT
|| sb->width != wp->w_width
|| prev_curwin != curwin
-# endif
#endif
)
{
#ifdef FEAT_WINDOWS
sb->top = wp->w_winrow;
sb->status_height = wp->w_status_height;
-# ifdef FEAT_VERTSPLIT
sb->width = wp->w_width;
-# endif
#endif
/* Calculate height and position in pixels */
val, size, max);
}
}
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
prev_curwin = curwin;
#endif
--hold_gui_events;
int which, /* SBAR_LEFT or SBAR_RIGHT */
int enable) /* TRUE to enable scrollbar */
{
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
int midcol = curwin->w_wincol + curwin->w_width / 2;
int has_midcol = (wp->w_wincol <= midcol
&& wp->w_wincol + wp->w_width >= midcol);
st[2] = KE_FILLER;
st[3] = (char_u)MOUSE_LEFT;
fill_mouse_coord(st + 4,
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
wp->w_wincol == 0 ? -1 : wp->w_wincol + MOUSE_COLOFF,
#else
-1,
}
else if (row > wp->w_height) /* below status line */
update_mouseshape(SHAPE_IDX_CLINE);
-# ifdef FEAT_VERTSPLIT
else if (!(State & CMDLINE) && W_VSEP_WIDTH(wp) > 0 && col == wp->w_width
&& (row != wp->w_height || !stl_connected(wp)) && msg_scrolled == 0)
update_mouseshape(SHAPE_IDX_VSEP);
-# endif
else if (!(State & CMDLINE) && W_STATUS_HEIGHT(wp) > 0
&& row == wp->w_height && msg_scrolled == 0)
update_mouseshape(SHAPE_IDX_STATUS);
/* Values measured in characters: */
int top; /* Top of scroll bar (chars from row 0) */
int height; /* Current height of scroll bar in rows */
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
int width; /* Current width of scroll bar in cols */
#endif
int status_height; /* Height of status line */
lua_pushinteger(L, w->w_cursor.lnum);
else if (strncmp(s, "col", 3) == 0)
lua_pushinteger(L, w->w_cursor.col + 1);
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
else if (strncmp(s, "width", 5) == 0)
lua_pushinteger(L, W_WIDTH(w));
#endif
w->w_cursor.col = v - 1;
update_screen(VALID);
}
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
else if (strncmp(s, "width", 5) == 0)
{
win_T *win = curwin;
static Scheme_Object *get_window_buffer(void *, int, Scheme_Object **);
static Scheme_Object *get_window_height(void *, int, Scheme_Object **);
static Scheme_Object *set_window_height(void *, int, Scheme_Object **);
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
static Scheme_Object *get_window_width(void *, int, Scheme_Object **);
static Scheme_Object *set_window_width(void *, int, Scheme_Object **);
#endif
return scheme_void;
}
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
/* (get-win-width [window]) */
static Scheme_Object *
get_window_width(void *data, int argc, Scheme_Object **argv)
{get_window_buffer, "get-win-buffer", 0, 1},
{get_window_height, "get-win-height", 0, 1},
{set_window_height, "set-win-height", 1, 2},
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
{get_window_width, "get-win-width", 0, 1},
{set_window_width, "set-win-width", 1, 2},
#endif
#ifdef FEAT_WINDOWS
else if (strcmp(name, "row") == 0)
return PyLong_FromLong((long)(self->win->w_winrow));
-#endif
-#ifdef FEAT_VERTSPLIT
else if (strcmp(name, "width") == 0)
return PyLong_FromLong((long)(W_WIDTH(self->win)));
else if (strcmp(name, "col") == 0)
return 0;
}
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
else if (strcmp(name, "width") == 0)
{
long width;
static VALUE window_set_width(VALUE self UNUSED, VALUE width)
{
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
win_T *win = get_win(self);
win_T *savewin = curwin;
break;
case 'O': /* "-O[N]" open N vertical split windows */
-#if defined(FEAT_VERTSPLIT) && defined(FEAT_WINDOWS)
+#ifdef FEAT_WINDOWS
/* default is 0: open window for each file */
parmp->window_count = get_number_arg((char_u *)argv[0],
&argv_idx, 0);
if (!wp->w_p_wrap)
return 1;
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
if (wp->w_width == 0)
return 1;
#endif
if (!wp->w_p_wrap)
return lines + 1;
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
if (wp->w_width == 0)
return lines + 1;
#endif
if (finetune
&& curwin->w_p_wrap
-# ifdef FEAT_VERTSPLIT
+# ifdef FEAT_WINDOWS
&& curwin->w_width != 0
# endif
&& wcol >= (colnr_T)width)
}
if (mouse && drag_status_line)
return SHAPE_IDX_SDRAG;
-# ifdef FEAT_VERTSPLIT
+# ifdef FEAT_WINDOWS
if (mouse && drag_sep_line)
return SHAPE_IDX_VDRAG;
# endif
curwin->w_wrow = curwin->w_height - 1;
}
else if (curwin->w_p_wrap
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
&& curwin->w_width != 0
#endif
)
&& curwin->w_height != 0
&& curwin->w_cursor.lnum == curwin->w_topline
&& width > 0
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
&& curwin->w_width != 0
#endif
)
*/
wrow = curwin->w_wrow;
if (curwin->w_p_wrap
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
&& curwin->w_width != 0
#endif
)
end_row += plines(curwin->w_topline - 1);
#endif
if (curwin->w_p_wrap
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
&& curwin->w_width != 0
#endif
)
start_row = curwin->w_wrow - plines(curwin->w_topline);
#endif
if (curwin->w_p_wrap
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
&& curwin->w_width != 0
#endif
)
int in_status_line; /* mouse in status line */
#ifdef FEAT_WINDOWS
static int in_tab_line = FALSE; /* mouse clicked in tab line */
-#endif
-#ifdef FEAT_VERTSPLIT
int in_sep_line; /* mouse in vertical separator line */
#endif
int c1, c2;
drag_status_line = FALSE;
update_mouseshape(SHAPE_IDX_STATUS);
}
-# ifdef FEAT_VERTSPLIT
if (!is_drag && drag_sep_line)
{
drag_sep_line = FALSE;
update_mouseshape(SHAPE_IDX_VSEP);
}
-# endif
#endif
/*
oap == NULL ? NULL : &(oap->inclusive), which_button);
moved = (jump_flags & CURSOR_MOVED);
in_status_line = (jump_flags & IN_STATUS_LINE);
-#ifdef FEAT_VERTSPLIT
in_sep_line = (jump_flags & IN_SEP_LINE);
-#endif
#ifdef FEAT_NETBEANS_INTG
if (isNetbeansBuffer(curbuf)
}
#endif
}
-#ifdef FEAT_VERTSPLIT
else if (in_sep_line)
{
# ifdef FEAT_MOUSESHAPE
}
# endif
}
-#endif
else if ((mod_mask & MOD_MASK_MULTI_CLICK) && (State & (NORMAL | INSERT))
&& mouse_has(MOUSE_VISUAL))
{
if (width2 == 0)
width2 = 1; /* avoid divide by zero */
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
if (curwin->w_width != 0)
- {
#endif
+ {
/*
* Instead of sticking at the last character of the buffer line we
* try to stick in the last column of the screen.
}
}
}
-#ifdef FEAT_VERTSPLIT
}
-#endif
if (virtual_active() && atend)
coladvance(MAXCOL);
oap->motion_type = MCHAR;
oap->inclusive = FALSE;
if (curwin->w_p_wrap
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
&& curwin->w_width != 0
#endif
)
oap->motion_type = MCHAR;
oap->inclusive = TRUE;
if (curwin->w_p_wrap
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
&& curwin->w_width != 0
#endif
)
#define PV_UL OPT_BOTH(OPT_BUF(BV_UL))
#ifdef FEAT_WINDOWS
# define PV_WFH OPT_WIN(WV_WFH)
-#endif
-#ifdef FEAT_VERTSPLIT
# define PV_WFW OPT_WIN(WV_WFW)
#endif
#define PV_WRAP OPT_WIN(WV_WRAP)
# define ISP_LATIN1 (char_u *)"@,161-255"
#endif
-/* The 16 bit MS-DOS version is low on space, make the string as short as
- * possible when compiling with few features. */
+/* Make the string as short as possible when compiling with few features. */
#if defined(FEAT_DIFF) || defined(FEAT_FOLDING) || defined(FEAT_SPELL) \
- || defined(FEAT_VERTSPLIT) || defined(FEAT_CLIPBOARD) \
+ || defined(FEAT_WINDOWS) || defined(FEAT_CLIPBOARD) \
|| defined(FEAT_INS_EXPAND) || defined(FEAT_SYN_HL) || defined(FEAT_CONCEAL)
# define HIGHLIGHT_INIT "8:SpecialKey,@:NonText,d:Directory,e:ErrorMsg,i:IncSearch,l:Search,m:MoreMsg,M:ModeMsg,n:LineNr,N:CursorLineNr,r:Question,s:StatusLine,S:StatusLineNC,c:VertSplit,t:Title,v:Visual,V:VisualNOS,w:WarningMsg,W:WildMenu,f:Folded,F:FoldColumn,A:DiffAdd,C:DiffChange,D:DiffDelete,T:DiffText,>:SignColumn,-:Conceal,B:SpellBad,P:SpellCap,R:SpellRare,L:SpellLocal,+:Pmenu,=:PmenuSel,x:PmenuSbar,X:PmenuThumb,*:TabLine,#:TabLineSel,_:TabLineFill,!:CursorColumn,.:CursorLine,o:ColorColumn"
#else
(char_u *)&p_dy, PV_NONE,
{(char_u *)"", (char_u *)0L} SCRIPTID_INIT},
{"eadirection", "ead", P_STRING|P_VI_DEF,
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
(char_u *)&p_ead, PV_NONE,
{(char_u *)"both", (char_u *)0L}
#else
#endif
{(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
{"splitright", "spr", P_BOOL|P_VI_DEF,
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
(char_u *)&p_spr, PV_NONE,
#else
(char_u *)NULL, PV_NONE,
#endif
{(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
{"winfixwidth", "wfw", P_BOOL|P_VI_DEF|P_RSTAT,
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
(char_u *)VAR_WIN, PV_WFW,
#else
(char_u *)NULL, PV_NONE,
#endif
{(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
{"winminwidth", "wmw", P_NUM|P_VI_DEF,
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
(char_u *)&p_wmw, PV_NONE,
#else
(char_u *)NULL, PV_NONE,
#endif
{(char_u *)1L, (char_u *)0L} SCRIPTID_INIT},
{"winwidth", "wiw", P_NUM|P_VI_DEF,
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
(char_u *)&p_wiw, PV_NONE,
#else
(char_u *)NULL, PV_NONE,
p_term("t_CS", T_CCS)
p_term("t_Cs", T_UCS)
p_term("t_cs", T_CS)
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
p_term("t_CV", T_CSV)
#endif
p_term("t_da", T_DA)
static char *(p_scbopt_values[]) = {"ver", "hor", "jump", NULL};
#endif
static char *(p_debug_values[]) = {"msg", "throw", "beep", NULL};
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
static char *(p_ead_values[]) = {"both", "ver", "hor", NULL};
#endif
#if defined(FEAT_QUICKFIX)
}
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
/* 'eadirection' */
else if (varp == &p_ead)
{
win_setminheight();
}
-# ifdef FEAT_VERTSPLIT
+# ifdef FEAT_WINDOWS
else if (pp == &p_wiw)
{
if (p_wiw < 1)
#endif
#ifdef FEAT_WINDOWS
case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
-#endif
-#ifdef FEAT_VERTSPLIT
case PV_WFW: return (char_u *)&(curwin->w_p_wfw);
#endif
#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
#define DY_LASTLINE 0x001
#define DY_UHEX 0x002
EXTERN int p_ed; /* 'edcompatible' */
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
EXTERN char_u *p_ead; /* 'eadirection' */
#endif
EXTERN int p_ea; /* 'equalalways' */
#ifdef FEAT_SPELL
EXTERN char_u *p_sps; /* 'spellsuggest' */
#endif
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
EXTERN int p_spr; /* 'splitright' */
#endif
EXTERN int p_sol; /* 'startofline' */
#ifdef FEAT_WINDOWS
EXTERN long p_wh; /* 'winheight' */
EXTERN long p_wmh; /* 'winminheight' */
-#endif
-#ifdef FEAT_VERTSPLIT
EXTERN long p_wmw; /* 'winminwidth' */
EXTERN long p_wiw; /* 'winwidth' */
#endif
#endif
#ifdef FEAT_WINDOWS
, WV_WFH
-#endif
-#ifdef FEAT_VERTSPLIT
, WV_WFW
#endif
, WV_WRAP
* specified, the current window is vertically split and narrow.
*/
flags = WSP_HELP;
-# ifdef FEAT_VERTSPLIT
if (cmdmod.split == 0 && curwin->w_width != Columns
&& curwin->w_width < 80)
flags |= WSP_TOP;
-# endif
if (qi != &ql_info)
flags |= WSP_NEWLOC; /* don't copy the location list */
win_goto(win);
if (eap->addr_count != 0)
{
-#ifdef FEAT_VERTSPLIT
if (cmdmod.split & WSP_VERT)
{
if (height != W_WIDTH(win))
win_setwidth(height);
}
- else
-#endif
- if (height != win->w_height)
+ else if (height != win->w_height)
win_setheight(height);
}
}
/* Only set the height when still in the same tab page and there is no
* window to the side. */
- if (curtab == prevtab
-#ifdef FEAT_VERTSPLIT
- && curwin->w_width == Columns
-#endif
- )
+ if (curtab == prevtab && curwin->w_width == Columns)
win_setheight(height);
curwin->w_p_wfh = TRUE; /* set 'winfixheight' */
if (win_valid(win))
static void screen_line(int row, int coloff, int endcol, int clear_width);
# define SCREEN_LINE(r, o, e, c, rl) screen_line((r), (o), (e), (c))
#endif
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
static void draw_vsep_win(win_T *wp, int row);
#endif
#ifdef FEAT_STL_OPT
static void screenclear2(void);
static void lineclear(unsigned off, int width);
static void lineinvalid(unsigned off, int width);
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
static void linecopy(int to, int from, win_T *wp);
static void redraw_block(int row, int end, win_T *wp);
#endif
#if defined(FEAT_WINDOWS) || defined(FEAT_WILDMENU) || defined(FEAT_STL_OPT)
static int fillchar_status(int *attr, int is_curwin);
#endif
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
static int fillchar_vsep(int *attr);
#endif
#ifdef FEAT_STL_OPT
static void win_redr_ruler(win_T *wp, int always);
#endif
-#if defined(FEAT_CLIPBOARD) || defined(FEAT_VERTSPLIT)
+#if defined(FEAT_CLIPBOARD) || defined(FEAT_WINDOWS)
/* Ugly global: overrule attribute used by screen_char() */
static int screen_char_attr = 0;
#endif
return;
}
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
/* Window is zero-width: Only need to draw the separator. */
if (wp->w_width == 0)
{
}
else
{
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
draw_vsep_win(wp, row);
#endif
if (eof) /* we hit the end of the file */
)
{
win_draw_end(wp, '@', ' ', row, wp->w_height, HLF_AT);
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
draw_vsep_win(wp, row);
#endif
row = endrow;
unsigned max_off_to;
#endif
int col = 0;
-#if defined(FEAT_GUI) || defined(UNIX) || defined(FEAT_VERTSPLIT)
+#if defined(FEAT_GUI) || defined(UNIX) || defined(FEAT_WINDOWS)
int hl;
#endif
int force = FALSE; /* force update rest of the line */
#endif
screen_fill(row, row + 1, col + coloff, clear_width + coloff,
' ', ' ', 0);
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
off_to += clear_width - col;
col = clear_width;
#endif
if (clear_width > 0)
{
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
/* For a window that's left of another, draw the separator char. */
if (col + coloff < Columns)
{
}
#endif
-#if (defined(FEAT_WILDMENU) && defined(FEAT_VERTSPLIT)) || defined(PROTO)
+#if (defined(FEAT_WILDMENU) && defined(FEAT_WINDOWS)) || defined(PROTO)
/*
* Redraw all status lines at the bottom of frame "frp".
*/
}
#endif
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
/*
* Draw the verticap separator right of window "wp" starting with line "row".
*/
screen_fill(row, row + 1, clen, (int)Columns, fillchar, fillchar, attr);
}
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
win_redraw_last_status(topframe);
#else
lastwin->w_redr_status = TRUE;
len += 4;
}
-#ifndef FEAT_VERTSPLIT
- this_ru_col = ru_col;
- if (this_ru_col < (Columns + 1) / 2)
- this_ru_col = (Columns + 1) / 2;
-#else
this_ru_col = ru_col - (Columns - W_WIDTH(wp));
if (this_ru_col < (W_WIDTH(wp) + 1) / 2)
this_ru_col = (W_WIDTH(wp) + 1) / 2;
len = 1;
}
else
-#endif
#ifdef FEAT_MBYTE
if (has_mbyte)
{
#endif
}
-#ifdef FEAT_VERTSPLIT
/*
* May need to draw the character below the vertical separator.
*/
screen_putchar(fillchar, W_WINROW(wp) + wp->w_height, W_ENDCOL(wp),
attr);
}
-#endif
busy = FALSE;
}
}
#endif
-# ifdef FEAT_VERTSPLIT
/*
* Return TRUE if the status line of window "wp" is connected to the status
* line of the window right of it. If not, then it's a vertical separator.
}
return FALSE;
}
-# endif
#endif /* FEAT_WINDOWS */
if (*stl++ != '(')
stl = p_ruf;
}
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
col = ru_col - (Columns - W_WIDTH(wp));
if (col < (W_WIDTH(wp) + 1) / 2)
col = (W_WIDTH(wp) + 1) / 2;
# endif
}
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
col += W_WINCOL(wp);
#endif
}
/*
* Stop highlighting first, so it's easier to move the cursor.
*/
-#if defined(FEAT_CLIPBOARD) || defined(FEAT_VERTSPLIT)
+#if defined(FEAT_CLIPBOARD) || defined(FEAT_WINDOWS)
if (screen_char_attr != 0)
attr = screen_char_attr;
else
}
#endif
-#if defined(FEAT_CLIPBOARD) || defined(FEAT_VERTSPLIT) || defined(PROTO)
+#if defined(FEAT_CLIPBOARD) || defined(FEAT_WINDOWS) || defined(PROTO)
/*
* Draw a rectangle of the screen, inverted when "invert" is TRUE.
* This uses the contents of ScreenLines[] and doesn't change it.
}
#endif
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
/*
* Redraw the characters for a vertically split window.
*/
(void)vim_memset(ScreenAttrs + off, -1, (size_t)width * sizeof(sattr_T));
}
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
/*
* Copy part of a Screenline for vertically split window "wp".
*/
/* only a few lines left: redraw is faster */
if (mayclear && Rows - line_count < 5
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
&& wp->w_width == Columns
#endif
)
* scroll-up .
*/
if (scroll_region
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
|| W_WIDTH(wp) != Columns
#endif
)
{
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
if (scroll_region && (wp->w_width == Columns || *T_CSV != NUL))
#endif
scroll_region_set(wp, row);
else
retval = screen_ins_lines(W_WINROW(wp) + row, 0, line_count,
wp->w_height - row, wp);
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
if (scroll_region && (wp->w_width == Columns || *T_CSV != NUL))
#endif
scroll_region_reset();
* exists.
*/
result_empty = (row + line_count >= end);
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
if (wp != NULL && wp->w_width != Columns && *T_CSV == NUL)
type = USE_REDRAW;
else
/* Remove a modeless selection when inserting lines halfway the screen
* or not the full width of the screen. */
if (off + row > 0
-# ifdef FEAT_VERTSPLIT
+# ifdef FEAT_WINDOWS
|| (wp != NULL && wp->w_width != Columns)
# endif
)
end += off;
for (i = 0; i < line_count; ++i)
{
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
if (wp != NULL && wp->w_width != Columns)
{
/* need to copy part of a line */
screen_stop_highlight();
windgoto(cursor_row, 0);
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
/* redraw the characters */
if (type == USE_REDRAW)
redraw_block(row, end, wp);
* 5. Use T_DL (delete line) if it exists.
* 6. redraw the characters from ScreenLines[].
*/
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
if (wp != NULL && wp->w_width != Columns && *T_CSV == NUL)
type = USE_REDRAW;
else
else if (*T_CDL != NUL && line_count > 1 && can_delete)
type = USE_T_CDL;
else if (can_clear(T_CE) && result_empty
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
&& (wp == NULL || wp->w_width == Columns)
#endif
)
/* Remove a modeless selection when deleting lines halfway the screen or
* not the full width of the screen. */
if (off + row > 0
-# ifdef FEAT_VERTSPLIT
+# ifdef FEAT_WINDOWS
|| (wp != NULL && wp->w_width != Columns)
# endif
)
end += off;
for (i = 0; i < line_count; ++i)
{
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
if (wp != NULL && wp->w_width != Columns)
{
/* need to copy part of a line */
screen_stop_highlight();
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
/* redraw the characters */
if (type == USE_REDRAW)
redraw_block(row, end, wp);
}
#endif
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
/*
* Get the character to use in a separator between vertically split windows.
* Get its attributes in "*attr".
int i;
size_t len;
int o;
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
int this_ru_col;
int off = 0;
int width = Columns;
{
row = W_WINROW(wp) + wp->w_height;
fillchar = fillchar_status(&attr, wp == curwin);
-# ifdef FEAT_VERTSPLIT
off = W_WINCOL(wp);
width = W_WIDTH(wp);
-# endif
}
else
#endif
row = Rows - 1;
fillchar = ' ';
attr = 0;
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
width = Columns;
off = 0;
#endif
if (wp->w_status_height == 0) /* can't use last char of screen */
#endif
++o;
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
this_ru_col = ru_col - (Columns - width);
if (this_ru_col < 0)
this_ru_col = 0;
struct frame_S
{
char fr_layout; /* FR_LEAF, FR_COL or FR_ROW */
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
int fr_width;
int fr_newwidth; /* new width used in win_equal_rec() */
#endif
status/command line(s) */
#ifdef FEAT_WINDOWS
int w_status_height; /* number of status lines (0 or 1) */
-#endif
-#ifdef FEAT_VERTSPLIT
int w_wincol; /* Leftmost column of window in screen.
use W_WINCOL() */
int w_width; /* Width of window, excluding separation.
"StatusLine term=reverse,bold cterm=reverse,bold gui=reverse,bold"),
CENT("StatusLineNC term=reverse cterm=reverse",
"StatusLineNC term=reverse cterm=reverse gui=reverse"),
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
CENT("VertSplit term=reverse cterm=reverse",
"VertSplit term=reverse cterm=reverse gui=reverse"),
#endif
# ifdef TERMINFO
{(int)KS_CDL, IF_EB("\033|%p1%dD", ESC_STR "|%p1%dD")},
{(int)KS_CS, IF_EB("\033|%p1%d;%p2%dR", ESC_STR "|%p1%d;%p2%dR")},
-# ifdef FEAT_VERTSPLIT
+# ifdef FEAT_WINDOWS
{(int)KS_CSV, IF_EB("\033|%p1%d;%p2%dV", ESC_STR "|%p1%d;%p2%dV")},
# endif
# else
{(int)KS_CDL, IF_EB("\033|%dD", ESC_STR "|%dD")},
{(int)KS_CS, IF_EB("\033|%d;%dR", ESC_STR "|%d;%dR")},
-# ifdef FEAT_VERTSPLIT
+# ifdef FEAT_WINDOWS
{(int)KS_CSV, IF_EB("\033|%d;%dV", ESC_STR "|%d;%dV")},
# endif
# endif
# else
{(int)KS_CS, "[%dCS%d]"},
# endif
-# ifdef FEAT_VERTSPLIT
+# ifdef FEAT_WINDOWS
# ifdef TERMINFO
{(int)KS_CSV, "[%p1%dCSV%p2%d]"},
# else
if (old_Columns != Columns)
{
old_Columns = Columns;
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
shell_new_columns(); /* update window sizes */
#endif
}
{
OUT_STR(tgoto((char *)T_CS, W_WINROW(wp) + wp->w_height - 1,
W_WINROW(wp) + off));
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
if (*T_CSV != NUL && wp->w_width != Columns)
OUT_STR(tgoto((char *)T_CSV, W_WINCOL(wp) + wp->w_width - 1,
W_WINCOL(wp)));
scroll_region_reset(void)
{
OUT_STR(tgoto((char *)T_CS, (int)Rows - 1, 0));
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
if (*T_CSV != NUL)
OUT_STR(tgoto((char *)T_CSV, (int)Columns - 1, 0));
#endif
KS_CSI, /* start insert mode (bar cursor) */
KS_CEI, /* end insert mode (block cursor) */
KS_CSR, /* start replace mode (underline cursor) */
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
KS_CSV, /* scroll region vertical */
#endif
KS_OP, /* original color pair */
int which_button) /* MOUSE_LEFT, MOUSE_RIGHT, MOUSE_MIDDLE */
{
static int on_status_line = 0; /* #lines below bottom of window */
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
static int on_sep_line = 0; /* on separator right of window */
#endif
static int prev_row = -1;
* line, stop Visual mode */
if (on_status_line)
return IN_STATUS_LINE;
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
if (on_sep_line)
return IN_SEP_LINE;
#endif
}
else
on_status_line = 0;
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
if (col >= wp->w_width) /* In separator line */
{
on_sep_line = col - wp->w_width + 1;
if (VIsual_active
&& (wp->w_buffer != curwin->w_buffer
|| (!on_status_line
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
&& !on_sep_line
#endif
#ifdef FEAT_FOLDING
{
/* A click outside the command-line window: Use modeless
* selection if possible. Allow dragging the status lines. */
-# ifdef FEAT_VERTSPLIT
on_sep_line = 0;
-# endif
# ifdef FEAT_CLIPBOARD
if (on_status_line)
return IN_STATUS_LINE;
else
return IN_STATUS_LINE | CURSOR_MOVED;
}
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
if (on_sep_line) /* In (or below) status line */
{
/* Don't use start_arrow() if we're in the same window */
#endif
return IN_STATUS_LINE; /* Cursor didn't move */
}
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
else if (on_sep_line && which_button == MOUSE_LEFT)
{
if (dragwin != NULL)
#endif
row -= W_WINROW(curwin);
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
col -= W_WINCOL(curwin);
#endif
{
if (fp->fr_layout == FR_LEAF)
break;
-#ifdef FEAT_VERTSPLIT
if (fp->fr_layout == FR_ROW)
{
for (fp = fp->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
*colp -= fp->fr_width;
}
}
-#endif
else /* fr_layout == FR_COL */
{
for (fp = fp->fr_child; fp->fr_next != NULL; fp = fp->fr_next)
*/
if (row >= wp->w_height) /* In (or below) status line */
return IN_STATUS_LINE;
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
if (col >= wp->w_width) /* In vertical separator line */
return IN_SEP_LINE;
#endif
#else
"-user_commands",
#endif
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
"+vertsplit",
#else
"-vertsplit",
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1611,
/**/
1610,
/**/
#define FINDFILE_DIR 1 /* only directories */
#define FINDFILE_BOTH 2 /* files and directories */
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
# define W_WINCOL(wp) (wp->w_wincol)
# define W_WIDTH(wp) (wp->w_width)
# define W_ENDCOL(wp) (wp->w_wincol + wp->w_width)
static void win_init_some(win_T *newp, win_T *oldp);
static void frame_comp_pos(frame_T *topfrp, int *row, int *col);
static void frame_setheight(frame_T *curfrp, int height);
-#ifdef FEAT_VERTSPLIT
static void frame_setwidth(frame_T *curfrp, int width);
-#endif
static void win_exchange(long);
static void win_rotate(int, int);
static void win_totop(int size, int flags);
static int frame_has_win(frame_T *frp, win_T *wp);
static void frame_new_height(frame_T *topfrp, int height, int topfirst, int wfh);
static int frame_fixed_height(frame_T *frp);
-#ifdef FEAT_VERTSPLIT
static int frame_fixed_width(frame_T *frp);
static void frame_add_statusline(frame_T *frp);
static void frame_new_width(frame_T *topfrp, int width, int leftfirst, int wfw);
static int frame_minwidth(frame_T *topfrp, win_T *next_curwin);
static void frame_fix_width(win_T *wp);
#endif
-#endif
static int win_alloc_firstwin(win_T *oldwin);
static void new_frame(win_T *wp);
#if defined(FEAT_WINDOWS) || defined(PROTO)
static void frame_append(frame_T *after, frame_T *frp);
static void frame_insert(frame_T *before, frame_T *frp);
static void frame_remove(frame_T *frp);
-# ifdef FEAT_VERTSPLIT
static void win_goto_ver(int up, long count);
static void win_goto_hor(int left, long count);
-# endif
static void frame_add_height(frame_T *frp, int n);
static void last_status_rec(frame_T *fr, int statusline);
static win_T *restore_snapshot_rec(frame_T *sn, frame_T *fr);
static int frame_check_height(frame_T *topfrp, int height);
-#ifdef FEAT_VERTSPLIT
static int frame_check_width(frame_T *topfrp, int width);
-#endif
#endif /* FEAT_WINDOWS */
(void)win_split((int)Prenum, 0);
break;
-#ifdef FEAT_VERTSPLIT
/* split current window in two parts, vertically */
case Ctrl_V:
case 'v':
CHECK_CMDWIN
reset_VIsual_and_resel(); /* stop Visual mode */
-# ifdef FEAT_QUICKFIX
+#ifdef FEAT_QUICKFIX
/* When splitting the quickfix window open a new buffer in it,
* don't replicate the quickfix buffer. */
if (bt_quickfix(curbuf))
goto newwindow;
-# endif
-# ifdef FEAT_GUI
+#endif
+#ifdef FEAT_GUI
need_mouse_correct = TRUE;
-# endif
+#endif
(void)win_split((int)Prenum, WSP_VERT);
break;
-#endif
/* split current window and edit alternate file */
case Ctrl_HAT:
vim_snprintf((char *)cbuf, sizeof(cbuf) - 5, "%ld", Prenum);
else
cbuf[0] = NUL;
-#if defined(FEAT_VERTSPLIT) && defined(FEAT_QUICKFIX)
+#if defined(FEAT_QUICKFIX)
if (nchar == 'v' || nchar == Ctrl_V)
STRCAT(cbuf, "v");
#endif
case K_DOWN:
case Ctrl_J:
CHECK_CMDWIN
-#ifdef FEAT_VERTSPLIT
win_goto_ver(FALSE, Prenum1);
-#else
- for (wp = curwin; wp->w_next != NULL && Prenum1-- > 0;
- wp = wp->w_next)
- ;
- win_goto(wp);
-#endif
break;
/* cursor to window above */
case K_UP:
case Ctrl_K:
CHECK_CMDWIN
-#ifdef FEAT_VERTSPLIT
win_goto_ver(TRUE, Prenum1);
-#else
- for (wp = curwin; wp->w_prev != NULL && Prenum1-- > 0;
- wp = wp->w_prev)
- ;
- win_goto(wp);
-#endif
break;
-#ifdef FEAT_VERTSPLIT
/* cursor to left window */
case 'h':
case K_LEFT:
CHECK_CMDWIN
win_goto_hor(FALSE, Prenum1);
break;
-#endif
/* move window to new tab page */
case 'T':
/* move window to the very top/bottom/left/right */
case 'K':
case 'J':
-#ifdef FEAT_VERTSPLIT
case 'H':
case 'L':
-#endif
CHECK_CMDWIN
win_totop((int)Prenum,
((nchar == 'H' || nchar == 'L') ? WSP_VERT : 0)
win_setheight(Prenum ? (int)Prenum : 9999);
break;
-#ifdef FEAT_VERTSPLIT
/* increase current window width */
case '>':
#ifdef FEAT_GUI
#endif
win_setwidth(Prenum != 0 ? (int)Prenum : 9999);
break;
-#endif
/* jump to tag and split window if tag exists (in preview window) */
#if defined(FEAT_QUICKFIX)
case Ctrl_RSB:
case 'g':
case Ctrl_G:
-#ifdef FEAT_VERTSPLIT
case Ctrl_V:
case 'v':
case 'h':
case 'L':
case '>':
case '<':
-#endif
#if defined(FEAT_QUICKFIX)
case '}':
#endif
out_flush();
#endif
-#ifdef FEAT_VERTSPLIT
if (flags & WSP_VERT)
{
int wmw1;
}
}
else
-#endif
{
layout = FR_COL;
/* Only make all windows the same height if one of them (except oldwin)
* is higher than one of the split windows. */
- if (!do_equal && p_ea && size == 0
-#ifdef FEAT_VERTSPLIT
- && *p_ead != 'h'
-#endif
+ if (!do_equal && p_ea && size == 0 && *p_ead != 'h'
&& oldwin->w_frame->fr_parent != NULL)
{
frp = oldwin->w_frame->fr_parent->fr_child;
&& ((flags & WSP_BOT)
|| (flags & WSP_BELOW)
|| (!(flags & WSP_ABOVE)
- && (
-#ifdef FEAT_VERTSPLIT
- (flags & WSP_VERT) ? p_spr :
-#endif
- p_sb))))
+ && ( (flags & WSP_VERT) ? p_spr : p_sb))))
{
/* new window below/right of current one */
if (new_wp == NULL)
*/
if (flags & (WSP_TOP | WSP_BOT))
{
-#ifdef FEAT_VERTSPLIT
if ((topframe->fr_layout == FR_COL && (flags & WSP_VERT) == 0)
|| (topframe->fr_layout == FR_ROW && (flags & WSP_VERT) != 0))
-#else
- if (topframe->fr_layout == FR_COL)
-#endif
{
curfrp = topframe->fr_child;
if (flags & WSP_BOT)
before = FALSE;
else if (flags & WSP_ABOVE)
before = TRUE;
- else
-#ifdef FEAT_VERTSPLIT
- if (flags & WSP_VERT)
+ else if (flags & WSP_VERT)
before = !p_spr;
else
-#endif
before = !p_sb;
}
if (curfrp->fr_parent == NULL || curfrp->fr_parent->fr_layout != layout)
set_fraction(oldwin);
wp->w_fraction = oldwin->w_fraction;
-#ifdef FEAT_VERTSPLIT
if (flags & WSP_VERT)
{
wp->w_p_scr = curwin->w_p_scr;
frame_fix_width(wp);
}
else
-#endif
{
/* width and column of new window is same as current window */
-#ifdef FEAT_VERTSPLIT
if (flags & (WSP_TOP | WSP_BOT))
{
wp->w_wincol = 0;
wp->w_vsep_width = oldwin->w_vsep_width;
}
frp->fr_width = curfrp->fr_width;
-#endif
/* "new_size" of the current window goes to the new window, use
* one row for the status line */
/* Don't set the status_height for oldwin yet, this might break
* frame_fix_height(oldwin), therefore will be set below. */
}
-#ifdef FEAT_VERTSPLIT
if (flags & WSP_BOT)
frame_add_statusline(curfrp);
-#endif
frame_fix_height(wp);
frame_fix_height(oldwin);
*/
if (do_equal || dir != 0)
win_equal(wp, TRUE,
-#ifdef FEAT_VERTSPLIT
(flags & WSP_VERT) ? (dir == 'v' ? 'b' : 'h')
- : dir == 'h' ? 'b' :
-#endif
- 'v');
+ : dir == 'h' ? 'b' : 'v');
/* Don't change the window height/width to 'winheight' / 'winwidth' if a
* size was given. */
-#ifdef FEAT_VERTSPLIT
if (flags & WSP_VERT)
{
i = p_wiw;
# endif
}
else
-#endif
{
i = p_wh;
if (size != 0)
* make the new window the current window
*/
win_enter(wp, FALSE);
-#ifdef FEAT_VERTSPLIT
if (flags & WSP_VERT)
p_wiw = i;
else
-#endif
p_wh = i;
return OK;
int maxcount;
int todo;
-#ifdef FEAT_VERTSPLIT
if (vertical)
{
/* Each windows needs at least 'winminwidth' lines and a separator
- (p_wiw - p_wmw)) / (p_wmw + 1);
}
else
-#endif
{
/* Each window needs at least 'winminheight' lines and a status line. */
maxcount = (curwin->w_height + curwin->w_status_height
/* todo is number of windows left to create */
for (todo = count - 1; todo > 0; --todo)
-#ifdef FEAT_VERTSPLIT
if (vertical)
{
if (win_split(curwin->w_width - (curwin->w_width - todo)
break;
}
else
-#endif
{
if (win_split(curwin->w_height - (curwin->w_height - todo
* STATUS_HEIGHT) / (todo + 1)
temp = curwin->w_status_height;
curwin->w_status_height = wp->w_status_height;
wp->w_status_height = temp;
-#ifdef FEAT_VERTSPLIT
temp = curwin->w_vsep_width;
curwin->w_vsep_width = wp->w_vsep_width;
wp->w_vsep_width = temp;
frame_fix_width(curwin);
frame_fix_width(wp);
}
-#endif
(void)win_comp_pos(); /* recompute window positions */
need_mouse_correct = TRUE;
#endif
-#ifdef FEAT_VERTSPLIT
/* Check if all frames in this row/col have one window. */
for (frp = curwin->w_frame->fr_parent->fr_child; frp != NULL;
frp = frp->fr_next)
EMSG(_("E443: Cannot rotate when another window is split"));
return;
}
-#endif
while (count--)
{
wp1->w_status_height = n;
frame_fix_height(wp1);
frame_fix_height(wp2);
-#ifdef FEAT_VERTSPLIT
n = wp2->w_vsep_width;
wp2->w_vsep_width = wp1->w_vsep_width;
wp1->w_vsep_width = n;
frame_fix_width(wp1);
frame_fix_width(wp2);
-#endif
- /* recompute w_winrow and w_wincol for all windows */
+ /* recompute w_winrow and w_wincol for all windows */
(void)win_comp_pos();
}
win_equal(curwin, TRUE, 'v');
}
-#if defined(FEAT_GUI) && defined(FEAT_VERTSPLIT)
+#if defined(FEAT_GUI)
/* When 'guioptions' includes 'L' or 'R' may have to remove or add
* scrollbars. Have to update them anyway. */
gui_may_update_scrollbars();
height = win1->w_prev->w_status_height;
win1->w_prev->w_status_height = win1->w_status_height;
win1->w_status_height = height;
-#ifdef FEAT_VERTSPLIT
if (win1->w_prev->w_vsep_width == 1)
{
/* Remove the vertical separator from the last-but-one window,
win1->w_vsep_width = 1;
win1->w_frame->fr_width += 1;
}
-#endif
}
else if (win2 == lastwin)
{
height = win1->w_status_height;
win1->w_status_height = win2->w_status_height;
win2->w_status_height = height;
-#ifdef FEAT_VERTSPLIT
if (win1->w_vsep_width == 1)
{
/* Remove the vertical separator from win1, add it to the last
win1->w_vsep_width = 0;
win1->w_frame->fr_width -= 1;
}
-#endif
}
win_remove(win1, NULL);
frame_remove(win1->w_frame);
'b' for both, 0 for using p_ead */
{
if (dir == 0)
-#ifdef FEAT_VERTSPLIT
dir = *p_ead;
-#else
- dir = 'b';
-#endif
win_equal_rec(next_curwin == NULL ? curwin : next_curwin, current,
topframe, dir, 0, tabline_height(),
(int)Columns, topframe->fr_height);
/* Set the width/height of this frame.
* Redraw when size or position changes */
if (topfr->fr_height != height || topfr->fr_win->w_winrow != row
-#ifdef FEAT_VERTSPLIT
|| topfr->fr_width != width || topfr->fr_win->w_wincol != col
-#endif
)
{
topfr->fr_win->w_winrow = row;
frame_new_height(topfr, height, FALSE, FALSE);
-#ifdef FEAT_VERTSPLIT
topfr->fr_win->w_wincol = col;
frame_new_width(topfr, width, FALSE, FALSE);
-#endif
redraw_all_later(CLEAR);
}
}
-#ifdef FEAT_VERTSPLIT
else if (topfr->fr_layout == FR_ROW)
{
topfr->fr_width = width;
totwincount -= wincount;
}
}
-#endif
else /* topfr->fr_layout == FR_COL */
{
-#ifdef FEAT_VERTSPLIT
topfr->fr_width = width;
-#endif
topfr->fr_height = height;
if (dir != 'h') /* equalize frame heights */
curbuf = curwin->w_buffer;
close_curwin = TRUE;
}
- if (p_ea
-#ifdef FEAT_VERTSPLIT
- && (*p_ead == 'b' || *p_ead == dir)
-#endif
- )
- win_equal(curwin, TRUE,
-#ifdef FEAT_VERTSPLIT
- dir
-#else
- 0
-#endif
- );
+ if (p_ea && (*p_ead == 'b' || *p_ead == dir))
+ win_equal(curwin, TRUE, dir);
else
win_comp_pos();
if (close_curwin)
if (help_window)
restore_snapshot(SNAP_HELP_IDX, close_curwin);
-#if defined(FEAT_GUI) && defined(FEAT_VERTSPLIT)
+#if defined(FEAT_GUI)
/* When 'guioptions' includes 'L' or 'R' may have to remove scrollbars. */
if (gui.in_use && !win_hasvertsplit())
gui_init_which_components(NULL);
/* Remove this frame from the list of frames. */
frame_remove(frp_close);
-#ifdef FEAT_VERTSPLIT
if (frp_close->fr_parent->fr_layout == FR_COL)
{
-#endif
/* When 'winfixheight' is set, try to find another frame in the column
* (as close to the closed frame as possible) to distribute the height
* to. */
}
frame_new_height(frp2, frp2->fr_height + frp_close->fr_height,
frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE);
-#ifdef FEAT_VERTSPLIT
*dirp = 'v';
}
else
frp2 == frp_close->fr_next ? TRUE : FALSE, FALSE);
*dirp = 'h';
}
-#endif
/* If rows/columns go to a window below/right its positions need to be
* updated. Can only be done after the sizes have been updated. */
return alt_tabpage()->tp_curwin->w_frame;
frp = win->w_frame;
-#ifdef FEAT_VERTSPLIT
if (frp->fr_parent != NULL && frp->fr_parent->fr_layout == FR_ROW)
b = p_spr;
else
-#endif
b = p_sb;
if ((!b && frp->fr_next != NULL) || frp->fr_prev == NULL)
return frp->fr_next;
win_new_height(topfrp->fr_win,
height - topfrp->fr_win->w_status_height);
}
-#ifdef FEAT_VERTSPLIT
else if (topfrp->fr_layout == FR_ROW)
{
do
}
while (frp != NULL);
}
-#endif
else /* fr_layout == FR_COL */
{
/* Complicated case: Resize a column of frames. Resize the bottom
return TRUE;
}
-#ifdef FEAT_VERTSPLIT
/*
* Return TRUE if width of frame "frp" should not be changed because of
* the 'winfixwidth' option.
{
wp->w_frame->fr_width = wp->w_width + wp->w_vsep_width;
}
-#endif
/*
* Set frame height from the window it contains.
{
frame_T *frp;
int m;
-#ifdef FEAT_VERTSPLIT
int n;
-#endif
if (topfrp->fr_win != NULL)
{
++m;
}
}
-#ifdef FEAT_VERTSPLIT
else if (topfrp->fr_layout == FR_ROW)
{
/* get the minimal height from each frame in this row */
m = n;
}
}
-#endif
else
{
/* Add up the minimal heights for all frames in this column. */
return m;
}
-#ifdef FEAT_VERTSPLIT
/*
* Compute the minimal width for frame "topfrp".
* When "next_curwin" isn't NULL, use p_wiw for this window.
return m;
}
-#endif
/*
if (curwin->w_frame == NULL)
return FAIL;
topframe = curwin->w_frame;
-#ifdef FEAT_VERTSPLIT
topframe->fr_width = Columns;
-#endif
topframe->fr_height = Rows - p_ch;
topframe->fr_win = curwin;
{
firstwin->w_height = ROWS_AVAIL;
topframe->fr_height = ROWS_AVAIL;
-#ifdef FEAT_VERTSPLIT
firstwin->w_width = Columns;
topframe->fr_width = Columns;
-#endif
}
#if defined(FEAT_WINDOWS) || defined(PROTO)
#endif
))
shell_new_rows();
-#ifdef FEAT_VERTSPLIT
if (curtab->tp_old_Columns != Columns && starting == 0)
shell_new_columns(); /* update window widths */
-#endif
#if defined(FEAT_GUI)
/* When 'guioptions' includes 'L' or 'R' may have to remove or add
}
#endif
-#ifdef FEAT_VERTSPLIT
/*
* Move to window above or below "count" times.
*/
if (foundfr != NULL)
win_goto(foundfr->fr_win);
}
-#endif
/*
* Make window "wp" the current window.
else if (curwin->w_height == 0)
win_setheight(1);
-#ifdef FEAT_VERTSPLIT
/* set window width to desired minimal value */
if (curwin->w_width < p_wiw && !curwin->w_p_wfw)
win_setwidth((int)p_wiw);
-#endif
#ifdef FEAT_MOUSE
setmouse(); /* in case jumped to/from help buffer */
if (!hidden)
win_append(after, new_wp);
#endif
-#ifdef FEAT_VERTSPLIT
new_wp->w_wincol = 0;
new_wp->w_width = Columns;
-#endif
/* position the display and the cursor at the top of the file. */
new_wp->w_topline = 1;
#endif
}
-#if defined(FEAT_VERTSPLIT) || defined(PROTO)
+#if defined(FEAT_WINDOWS) || defined(PROTO)
/*
* Called from win_new_shellsize() after Columns changed.
*/
{
win_T *wp;
frame_T *frp;
-#ifdef FEAT_VERTSPLIT
int startcol;
int startrow;
-#endif
wp = topfrp->fr_win;
if (wp != NULL)
{
- if (wp->w_winrow != *row
-#ifdef FEAT_VERTSPLIT
- || wp->w_wincol != *col
-#endif
- )
+ if (wp->w_winrow != *row || wp->w_wincol != *col)
{
/* position changed, redraw */
wp->w_winrow = *row;
-#ifdef FEAT_VERTSPLIT
wp->w_wincol = *col;
-#endif
redraw_win_later(wp, NOT_VALID);
wp->w_redr_status = TRUE;
}
*row += wp->w_height + wp->w_status_height;
-#ifdef FEAT_VERTSPLIT
*col += wp->w_width + wp->w_vsep_width;
-#endif
}
else
{
-#ifdef FEAT_VERTSPLIT
startrow = *row;
startcol = *col;
-#endif
for (frp = topfrp->fr_child; frp != NULL; frp = frp->fr_next)
{
-#ifdef FEAT_VERTSPLIT
if (topfrp->fr_layout == FR_ROW)
*row = startrow; /* all frames are at the same row */
else
*col = startcol; /* all frames are at the same col */
-#endif
frame_comp_pos(frp, row, col);
}
}
/*
* Column of frames: try to change only frames in this column.
*/
-#ifdef FEAT_VERTSPLIT
/*
* Do this twice:
* 1: compute room available, if it's not enough try resizing the
* Try not to reduce the height of a window with 'winfixheight' set.
*/
for (run = 1; run <= 2; ++run)
-#else
- for (;;)
-#endif
{
room = 0;
room_reserved = 0;
if (frp != curfrp)
room -= frame_minheight(frp, NULL);
}
-#ifdef FEAT_VERTSPLIT
if (curfrp->fr_width != Columns)
room_cmdline = 0;
else
-#endif
{
room_cmdline = Rows - p_ch - (lastwin->w_winrow
+ lastwin->w_height + lastwin->w_status_height);
if (height <= room + room_cmdline)
break;
-#ifdef FEAT_VERTSPLIT
if (run == 2 || curfrp->fr_width == Columns)
-#endif
{
if (height > room + room_cmdline)
height = room + room_cmdline;
break;
}
-#ifdef FEAT_VERTSPLIT
frame_setheight(curfrp->fr_parent, height
+ frame_minheight(curfrp->fr_parent, NOWIN) - (int)p_wmh - 1);
-#endif
- /*NOTREACHED*/
}
/*
}
}
-#if defined(FEAT_VERTSPLIT) || defined(PROTO)
/*
* Set current window width and take care of repositioning other windows to
* fit around it.
}
}
}
-#endif /* FEAT_VERTSPLIT */
/*
* Check 'winminheight' for a valid value.
showmode();
}
-# if defined(FEAT_VERTSPLIT) || defined(PROTO)
/*
* Separator line of dragwin is dragged "offset" lines right (negative is left).
*/
(void)win_comp_pos();
redraw_all_later(NOT_VALID);
}
-# endif /* FEAT_VERTSPLIT */
#endif /* FEAT_MOUSE */
#endif /* FEAT_WINDOWS */
invalidate_botline_win(wp);
}
-#ifdef FEAT_VERTSPLIT
+#ifdef FEAT_WINDOWS
/*
* Set the width of a window.
*/
/* Find bottom frame with width of screen. */
frp = lastwin->w_frame;
-# ifdef FEAT_VERTSPLIT
while (frp->fr_width != Columns && frp->fr_parent != NULL)
frp = frp->fr_parent;
-# endif
/* Avoid changing the height of a window with 'winfixheight' set. */
while (frp->fr_prev != NULL && frp->fr_layout == FR_LEAF
redraw_all_later(SOME_VALID);
}
}
-#ifdef FEAT_VERTSPLIT
else if (fr->fr_layout == FR_ROW)
{
/* vertically split windows, set status line for each one */
for (fp = fr->fr_child; fp != NULL; fp = fp->fr_next)
last_status_rec(fp, statusline);
}
-#endif
else
{
/* horizontally split window, set status line for last one */
if (*frp == NULL)
return;
(*frp)->fr_layout = fr->fr_layout;
-# ifdef FEAT_VERTSPLIT
(*frp)->fr_width = fr->fr_width;
-# endif
(*frp)->fr_height = fr->fr_height;
if (fr->fr_next != NULL)
make_snapshot_rec(fr->fr_next, &((*frp)->fr_next));
win_T *wp;
if (curtab->tp_snapshot[idx] != NULL
-# ifdef FEAT_VERTSPLIT
&& curtab->tp_snapshot[idx]->fr_width == topframe->fr_width
-# endif
&& curtab->tp_snapshot[idx]->fr_height == topframe->fr_height
&& check_snapshot_rec(curtab->tp_snapshot[idx], topframe) == OK)
{
win_T *wp2;
fr->fr_height = sn->fr_height;
-# ifdef FEAT_VERTSPLIT
fr->fr_width = sn->fr_width;
-# endif
if (fr->fr_layout == FR_LEAF)
{
frame_new_height(fr, fr->fr_height, FALSE, FALSE);
-# ifdef FEAT_VERTSPLIT
frame_new_width(fr, fr->fr_width, FALSE, FALSE);
-# endif
wp = sn->fr_win;
}
if (sn->fr_next != NULL)
}
#endif
-#if (defined(FEAT_GUI) && defined(FEAT_VERTSPLIT)) || defined(PROTO)
+#if (defined(FEAT_GUI) && defined(FEAT_WINDOWS)) || defined(PROTO)
/*
* Return TRUE if there is any vertically split window.
*/
}
#endif
-#if defined(FEAT_VERTSPLIT) || defined(PROTO)
+#if defined(FEAT_WINDOWS) || defined(PROTO)
/*
* Return TRUE if "topfrp" and its children are at the right width.
*/