diff options
author | nicm <nicm> | 2020-05-16 15:16:36 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-05-16 15:16:36 +0000 |
commit | 463864f5a25a0015a4f2795ba8a14e0e0bb2fa7a (patch) | |
tree | 81fde9d1bcd05f9a76c56ccc146ceb8311a8666e /tmux.h | |
parent | 2391fe23ab09cfe8667abdcc3338a958ab3da31d (diff) | |
download | rtmux-463864f5a25a0015a4f2795ba8a14e0e0bb2fa7a.tar.gz rtmux-463864f5a25a0015a4f2795ba8a14e0e0bb2fa7a.tar.bz2 rtmux-463864f5a25a0015a4f2795ba8a14e0e0bb2fa7a.zip |
Add -W and -T flags to command-prompt to only complete a window and a
target, also complete aliases.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |