diff options
author | nicm <nicm> | 2022-10-28 13:00:02 +0000 |
---|---|---|
committer | nicm <nicm> | 2022-10-28 13:00:02 +0000 |
commit | 8edece2cdb7b4425526bae904506a246edbb6409 (patch) | |
tree | deaaac60c890b8fd4e26913c21fcbfcf54c07508 /tmux.h | |
parent | c2580cfe2466589c8bd9348225820888a3fc4c0a (diff) | |
download | rtmux-8edece2cdb7b4425526bae904506a246edbb6409.tar.gz rtmux-8edece2cdb7b4425526bae904506a246edbb6409.tar.bz2 rtmux-8edece2cdb7b4425526bae904506a246edbb6409.zip |
Add paste-buffer-deleted notification and fix name of paste-buffer-changed.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2163,7 +2163,7 @@ void notify_winlink(const char *, struct winlink *); void notify_session_window(const char *, struct session *, struct window *); void notify_window(const char *, struct window *); void notify_pane(const char *, struct window_pane *); -void notify_paste_buffer(const char *); +void notify_paste_buffer(const char *, int); /* options.c */ struct options *options_create(struct options *); @@ -3185,6 +3185,7 @@ void control_notify_session_created(struct session *); void control_notify_session_closed(struct session *); void control_notify_session_window_changed(struct session *); void control_notify_paste_buffer_changed(const char *); +void control_notify_paste_buffer_deleted(const char *); /* session.c */ extern struct sessions sessions; |