From 25cf126de8abe607d2b0e63815bc1db4fd313173 Mon Sep 17 00:00:00 2001 From: nicm Date: Sun, 27 Aug 2017 08:33:55 +0000 Subject: Use kind and kri for S-Up/Down as well as kUP and kDN. --- tmux.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 68bb5466..8ee267bc 100644 --- a/tmux.h +++ b/tmux.h @@ -361,6 +361,7 @@ enum tty_code_code { TTYC_KIC6, TTYC_KIC7, TTYC_KICH1, + TTYC_KIND, TTYC_KLFT2, TTYC_KLFT3, TTYC_KLFT4, @@ -382,6 +383,7 @@ enum tty_code_code { TTYC_KPRV5, TTYC_KPRV6, TTYC_KPRV7, + TTYC_KRI, TTYC_KRIT2, TTYC_KRIT3, TTYC_KRIT4, -- cgit From fe4467ad2bf7b37a12330ed0a147e7230d60179a Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 28 Aug 2017 12:36:38 +0000 Subject: Do not forbid targets to specify non-visible panes - the checks for visibility are better where the target is used. GitHub issue 1049. --- tmux.h | 1 - 1 file changed, 1 deletion(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 8ee267bc..7a54823b 100644 --- a/tmux.h +++ b/tmux.h @@ -2162,7 +2162,6 @@ int window_pane_set_mode(struct window_pane *, void window_pane_reset_mode(struct window_pane *); void window_pane_key(struct window_pane *, struct client *, struct session *, key_code, struct mouse_event *); -int window_pane_outside(struct window_pane *); int window_pane_visible(struct window_pane *); u_int window_pane_search(struct window_pane *, const char *); const char *window_printable_flags(struct winlink *); -- cgit