diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-06-29 03:30:15 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-06-29 03:30:15 +0000 |
commit | 27d18160c9396db3e3b2cb67151fb869a9a704f3 (patch) | |
tree | 94dbad3c698eabf4a186a0ac507bc50b8a98e3b6 /usr.bin/tmux/Makefile | |
parent | 8e604a37f5b8e2b615a0262254283428820ec4c4 (diff) |
Custom layouts. list-windows command displays the layout as a string (such as
"bb62,159x48,0,0{79x48,0,0,79x48,80,0}") and it can be applied to another
window (with the same number of panes or fewer) using select-layout.
Diffstat (limited to 'usr.bin/tmux/Makefile')
-rw-r--r-- | usr.bin/tmux/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/Makefile b/usr.bin/tmux/Makefile index aadcfdea10c..9a0b44a6953 100644 --- a/usr.bin/tmux/Makefile +++ b/usr.bin/tmux/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.43 2010/06/21 21:44:09 nicm Exp $ +# $OpenBSD: Makefile,v 1.44 2010/06/29 03:30:13 nicm Exp $ PROG= tmux SRCS= attributes.c cfg.c client.c clock.c \ @@ -31,7 +31,7 @@ SRCS= attributes.c cfg.c client.c clock.c \ cmd-pipe-pane.c cmd-capture-pane.c cmd.c \ colour.c environ.c grid-view.c grid-utf8.c grid.c input-keys.c \ input.c key-bindings.c key-string.c \ - layout-set.c layout-string.c layout.c log.c job.c \ + layout-custom.c layout-set.c layout-string.c layout.c log.c job.c \ mode-key.c names.c options.c paste.c procname.c \ resize.c screen-redraw.c screen-write.c screen.c session.c status.c \ signal.c server-fn.c server.c server-client.c server-window.c \ |