Sync OpenBSD patchset 584:

Permit panes to be referred to as "top", "bottom", "top-left" etc, if the right
pane can be identified.
This commit is contained in:
Tiago Cunha
2009-12-10 16:52:58 +00:00
parent 39b1cdbdb9
commit 328861e330
4 changed files with 211 additions and 18 deletions

5
tmux.h
View File

@ -1,4 +1,4 @@
/* $Id: tmux.h,v 1.530 2009-12-04 22:14:47 tcunha Exp $ */
/* $Id: tmux.h,v 1.531 2009-12-10 16:52:58 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -1843,6 +1843,9 @@ u_int layout_set_next(struct window *);
u_int layout_set_previous(struct window *);
void layout_set_active_changed(struct window *);
/* layout-string.c */
struct layout_cell *layout_find_string(struct window *, const char *);
/* window-clock.c */
extern const struct window_mode window_clock_mode;