diff options
author | 2016-10-15 00:09:30 +0000 | |
---|---|---|
committer | 2016-10-15 00:09:30 +0000 | |
commit | 3938e8ab4b0c9685216b38f742f94a8ed61dbee6 (patch) | |
tree | a717a43fdfc26f6ad1c282727983514c5b3a140d /usr.bin/tmux/tmux.h | |
parent | Drain notifys once at the end of the server loop instead of doing it (diff) | |
download | wireguard-openbsd-3938e8ab4b0c9685216b38f742f94a8ed61dbee6.tar.xz wireguard-openbsd-3938e8ab4b0c9685216b38f742f94a8ed61dbee6.zip |
Fire hooks on the simple notifys (window-renamed and session-renamed),
the complicated ones get no hooks for now (more to come).
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 52d0c355511..1c0cf6aa0b1 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.663 2016/10/15 00:01:01 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.664 2016/10/15 00:09:30 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1742,6 +1742,8 @@ int cmd_find_from_session(struct cmd_find_state *, struct session *); int cmd_find_from_winlink(struct cmd_find_state *, struct session *, struct winlink *); +int cmd_find_from_session_window(struct cmd_find_state *, + struct session *, struct window *); int cmd_find_from_window(struct cmd_find_state *, struct window *); int cmd_find_from_pane(struct cmd_find_state *, struct window_pane *); |