diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-04-30 12:02:21 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-04-30 12:02:21 +0100 |
commit | 25487757bcda66d027a79af9bc3283e2d6acfc39 (patch) | |
tree | eb0dff86083296fe5fc766f09a2a4791b0b8857b /tmux.h | |
parent | 5af694394018940819c0734be9b5fd44df1bf857 (diff) | |
download | rtmux-25487757bcda66d027a79af9bc3283e2d6acfc39.tar.gz rtmux-25487757bcda66d027a79af9bc3283e2d6acfc39.tar.bz2 rtmux-25487757bcda66d027a79af9bc3283e2d6acfc39.zip |
Add -W and -T flags to command-prompt to only complete a window and a target.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1604,6 +1604,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; |