summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/tmux.h
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2020-05-16 15:16:36 +0000
committernicm <nicm@openbsd.org>2020-05-16 15:16:36 +0000
commit37a3aee2ece7d35250a09a2ec42437d3655c5cf4 (patch)
treedb1e8360622ffd1762a766ece15b5d8b906850ab /usr.bin/tmux/tmux.h
parentCopy mode search improvements: (diff)
downloadwireguard-openbsd-37a3aee2ece7d35250a09a2ec42437d3655c5cf4.tar.xz
wireguard-openbsd-37a3aee2ece7d35250a09a2ec42437d3655c5cf4.zip
Add -W and -T flags to command-prompt to only complete a window and a
target, also complete aliases.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r--usr.bin/tmux/tmux.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h
index 187200fefd2..bbcd85d3eec 100644
--- a/usr.bin/tmux/tmux.h
+++ b/usr.bin/tmux/tmux.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmux.h,v 1.1027 2020/05/16 15:11:52 nicm Exp $ */
+/* $OpenBSD: tmux.h,v 1.1028 2020/05/16 15:16:37 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -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;