aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-11-21 19:44:05 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-11-21 19:44:05 +0000
commitacb3661b66195ea4a5ee1305c58ba8a52f62a686 (patch)
treeb84abf25c56fe4f269754bd3d351d32270c49998 /tmux.h
parent24c39950ff6b9b6d0e49d2d1341552b4fe524357 (diff)
downloadrtmux-acb3661b66195ea4a5ee1305c58ba8a52f62a686.tar.gz
rtmux-acb3661b66195ea4a5ee1305c58ba8a52f62a686.tar.bz2
rtmux-acb3661b66195ea4a5ee1305c58ba8a52f62a686.zip
Scrollable win for command output.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 31057f10..96632eac 100644
--- a/tmux.h
+++ b/tmux.h
@@ -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 *);