diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-01-20 19:15:41 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-01-20 19:15:41 +0000 |
commit | 85bd35bfe848b92638b0b75e22c83b771860200a (patch) | |
tree | 9a06c0ac034c09d9eb8b39a85dd6f536d231a9bd /usr.bin/tmux/options-table.c | |
parent | 52ec8ec91f79b331e1f548cae29f8cf165bc3753 (diff) |
Add an option to disable the window rename escape sequence, from Romain
Francoise.
Diffstat (limited to 'usr.bin/tmux/options-table.c')
-rw-r--r-- | usr.bin/tmux/options-table.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.bin/tmux/options-table.c b/usr.bin/tmux/options-table.c index d6cebc2edd8..47648aa6b4f 100644 --- a/usr.bin/tmux/options-table.c +++ b/usr.bin/tmux/options-table.c @@ -1,4 +1,4 @@ -/* $OpenBSD: options-table.c,v 1.16 2011/11/15 23:24:04 nicm Exp $ */ +/* $OpenBSD: options-table.c,v 1.17 2012/01/20 19:15:40 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott <nicm@users.sourceforge.net> @@ -436,6 +436,11 @@ const struct options_table_entry window_options_table[] = { .default_num = 0 }, + { .name = "allow-rename", + .type = OPTIONS_TABLE_FLAG, + .default_num = 1 + }, + { .name = "alternate-screen", .type = OPTIONS_TABLE_FLAG, .default_num = 1 |