mirror of
https://github.com/tmux/tmux.git
synced 2025-09-04 15:26:58 +00:00
Send notifications to control clients. Also don't redraw client when
suspended.
This commit is contained in:
11
tmux.h
11
tmux.h
@ -2215,6 +2215,17 @@ void clear_signals(int);
|
||||
|
||||
/* control.c */
|
||||
void control_callback(struct client *, int, void*);
|
||||
void printflike2 control_write(struct client *, const char *, ...);
|
||||
|
||||
/* control-notify.c */
|
||||
void control_notify_window_layout_changed(struct window *);
|
||||
void control_notify_window_unlinked(struct session *, struct window *);
|
||||
void control_notify_window_linked(struct session *, struct window *);
|
||||
void control_notify_window_renamed(struct window *);
|
||||
void control_notify_attached_session_changed(struct client *);
|
||||
void control_notify_session_renamed(struct session *);
|
||||
void control_notify_session_created(struct session *);
|
||||
void control_notify_session_close(struct session *);
|
||||
|
||||
/* session.c */
|
||||
extern struct sessions sessions;
|
||||
|
Reference in New Issue
Block a user