diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2012-11-27 20:22:12 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2012-11-27 20:22:12 +0000 |
commit | 47c097cb51da9622180963af5391d142e7d4ade3 (patch) | |
tree | 89a59136eb48394945f0ddfda370c762d240f51b /tmux.h | |
parent | 24d7d073fffbf5137176ef474f13f4cfe1f032e9 (diff) | |
download | rtmux-47c097cb51da9622180963af5391d142e7d4ade3.tar.gz rtmux-47c097cb51da9622180963af5391d142e7d4ade3.tar.bz2 rtmux-47c097cb51da9622180963af5391d142e7d4ade3.zip |
Support middle-click paste, based on a diff from Ailin Nemui.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1682,8 +1682,8 @@ const char *tty_term_string2( struct tty_term *, enum tty_code_code, int, int); const char *tty_term_ptr1( struct tty_term *, enum tty_code_code, const void *); -const char *tty_term_ptr2( - struct tty_term *, enum tty_code_code, const void *, const void *); +const char *tty_term_ptr2(struct tty_term *, enum tty_code_code, + const void *, const void *); int tty_term_number(struct tty_term *, enum tty_code_code); int tty_term_flag(struct tty_term *, enum tty_code_code); @@ -1704,6 +1704,9 @@ 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); +void paste_send_pane(struct paste_buffer *, struct window_pane *, + const char *, int); + /* clock.c */ extern const char clock_table[14][5][5]; @@ -1906,7 +1909,7 @@ void server_unlink_window(struct session *, struct winlink *); void server_destroy_pane(struct window_pane *); void server_destroy_session_group(struct session *); void server_destroy_session(struct session *); -void server_check_unattached (void); +void server_check_unattached(void); void server_set_identify(struct client *); void server_clear_identify(struct client *); void server_update_event(struct client *); |