diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-05-06 23:56:47 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-05-06 23:56:47 +0000 |
commit | 9e3a49ecbfbc5ec2c5b97120f2780de25196e358 (patch) | |
tree | b01ff1abe78a25dbd173fe862a9ee30d71aa4c68 /usr.bin/tmux/tmux.h | |
parent | 3b4c037a29ab020e02adfbeedabcd4171a3a0dcc (diff) |
Remove ARRAY_* from history and expand completion to complete a) layout
names and b) targets beginning with -t or -s.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 6dc6a00c09d..6351b9c16c9 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.504 2015/05/06 08:35:39 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.505 2015/05/06 23:56:46 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -43,9 +43,6 @@ extern char **environ; /* Default global configuration file. */ #define TMUX_CONF "/etc/tmux.conf" -/* Default prompt history length. */ -#define PROMPT_HISTORY 100 - /* * Minimum layout cell size, NOT including separator line. The scroll region * cannot be one line in height so this must be at least two. |