diff options
author | Tiago Cunha <tcunha@gmx.com> | 2010-06-22 23:35:20 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2010-06-22 23:35:20 +0000 |
commit | bf1e23741015c60e869bd0cdff16e86a35195f7d (patch) | |
tree | 4b2d2cd21b102b93ec6614608d7526c6b89acb5a /tmux.h | |
parent | 8d3b726396d3f5124d31a792a5f3358357f2e105 (diff) | |
download | rtmux-bf1e23741015c60e869bd0cdff16e86a35195f7d.tar.gz rtmux-bf1e23741015c60e869bd0cdff16e86a35195f7d.tar.bz2 rtmux-bf1e23741015c60e869bd0cdff16e86a35195f7d.zip |
Sync OpenBSD patchset 726:
Add a choose-buffer command for easier use of the paste buffer stack.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.563 2010-06-22 23:29:05 tcunha Exp $ */ +/* $Id: tmux.h,v 1.564 2010-06-22 23:35:20 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1405,6 +1405,7 @@ int paste_free_top(struct paste_stack *); int paste_free_index(struct paste_stack *, u_int); void paste_add(struct paste_stack *, char *, size_t, u_int); int paste_replace(struct paste_stack *, u_int, char *, size_t); +char *paste_print(struct paste_buffer *, size_t); /* clock.c */ extern const char clock_table[14][5][5]; @@ -1441,6 +1442,7 @@ extern const struct cmd_entry cmd_attach_session_entry; extern const struct cmd_entry cmd_bind_key_entry; extern const struct cmd_entry cmd_break_pane_entry; extern const struct cmd_entry cmd_capture_pane_entry; +extern const struct cmd_entry cmd_choose_buffer_entry; extern const struct cmd_entry cmd_choose_client_entry; extern const struct cmd_entry cmd_choose_session_entry; extern const struct cmd_entry cmd_choose_window_entry; |