diff options
author | 2016-10-13 10:01:49 +0000 | |
---|---|---|
committer | 2016-10-13 10:01:49 +0000 | |
commit | 788e192f1e52e7b4e4b046f4a21806c22cce079d (patch) | |
tree | 2f49c218475facd9ed503941a8f0f51626a9eac9 /usr.bin/tmux/tmux.h | |
parent | -f missed from splitw usage, from Felix Rosencrantz. (diff) | |
download | wireguard-openbsd-788e192f1e52e7b4e4b046f4a21806c22cce079d.tar.xz wireguard-openbsd-788e192f1e52e7b4e4b046f4a21806c22cce079d.zip |
Some improvements and bug fixes for hooks:
- Prepare the state again before the "after" hooks are run, because the
command may have killed or moved windows.
- Use the hooks list from the newly prepared target, not the old hooks
list (only matters for new-session really).
- Correctly detect an invalid current state and ignore it in
cmd_find_target ("killw; swapw").
- Change neww, new, killp, killw, splitw, swapp, swapw to update the
current state (used if no explicit target is given) to something more
useful after they have finished. For example, neww changes it to the
newly created window.
Hooks are still relatively new and primitive so there are likely to be
more changes to come.
Parts based on bug reports from Uwe Werler and Iblis Lin.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index b5b50ab658b..f64ba7beff7 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.659 2016/10/12 15:26:37 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.660 2016/10/13 10:01:49 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1730,6 +1730,7 @@ int cmd_find_target(struct cmd_find_state *, struct client *cmd_find_client(struct cmd_q *, const char *, int); void cmd_find_clear_state(struct cmd_find_state *, struct cmd_q *, int); +int cmd_find_empty_state(struct cmd_find_state *); int cmd_find_valid_state(struct cmd_find_state *); void cmd_find_copy_state(struct cmd_find_state *, struct cmd_find_state *); |