aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2022-08-15 09:10:34 +0000
committernicm <nicm>2022-08-15 09:10:34 +0000
commit7c2dcd72380dc2d9e119e99cb423a67ae17b6bd2 (patch)
tree6407cc86249a7cda28c9d440e5e99e247fde866c /tmux.h
parent03149bf7f62e2c92d0e60087c52604d2dd51794f (diff)
downloadrtmux-7c2dcd72380dc2d9e119e99cb423a67ae17b6bd2.tar.gz
rtmux-7c2dcd72380dc2d9e119e99cb423a67ae17b6bd2.tar.bz2
rtmux-7c2dcd72380dc2d9e119e99cb423a67ae17b6bd2.zip
Notify when a paste buffer is deleted, GitHub issue 3302 from George
Nachman.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tmux.h b/tmux.h
index 413d8c38..9b43e0fd 100644
--- a/tmux.h
+++ b/tmux.h
@@ -2154,6 +2154,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 *);
/* options.c */
struct options *options_create(struct options *);
@@ -3174,6 +3175,7 @@ void control_notify_session_renamed(struct session *);
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 *);
/* session.c */
extern struct sessions sessions;