diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-11-21 19:44:05 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-11-21 19:44:05 +0000 |
commit | acb3661b66195ea4a5ee1305c58ba8a52f62a686 (patch) | |
tree | b84abf25c56fe4f269754bd3d351d32270c49998 /tmux.h | |
parent | 24c39950ff6b9b6d0e49d2d1341552b4fe524357 (diff) | |
download | rtmux-acb3661b66195ea4a5ee1305c58ba8a52f62a686.tar.gz rtmux-acb3661b66195ea4a5ee1305c58ba8a52f62a686.tar.bz2 rtmux-acb3661b66195ea4a5ee1305c58ba8a52f62a686.zip |
Scrollable win for command output.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.88 2007-11-21 18:24:49 nicm Exp $ */ +/* $Id: tmux.h,v 1.89 2007-11-21 19:44:05 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -815,6 +815,11 @@ void window_key(struct window *, int); /* window-scroll.c */ extern const struct window_mode window_scroll_mode; +/* window-more.c */ +extern const struct window_mode window_more_mode; +void window_more_vadd(struct window *, const char *, va_list); +void printflike2 window_more_add(struct window *, const char *, ...); + /* session.c */ extern struct sessions sessions; void session_cancelbell(struct session *, struct winlink *); |