From 463864f5a25a0015a4f2795ba8a14e0e0bb2fa7a Mon Sep 17 00:00:00 2001 From: nicm Date: Sat, 16 May 2020 15:16:36 +0000 Subject: Add -W and -T flags to command-prompt to only complete a window and a target, also complete aliases. --- tmux.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index e2443660..52477ed9 100644 --- a/tmux.h +++ b/tmux.h @@ -1602,6 +1602,8 @@ struct client { #define PROMPT_INCREMENTAL 0x4 #define PROMPT_NOFORMAT 0x8 #define PROMPT_KEY 0x10 +#define PROMPT_WINDOW 0x20 +#define PROMPT_TARGET 0x40 int prompt_flags; struct session *session; -- cgit