diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-03-17 21:40:54 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-03-17 21:40:54 +0000 |
commit | dbfd0440176d83319b4745462351b8b5131ae689 (patch) | |
tree | f9d1a80353385b7f4d0c398cfb9cc9b0f6bc913c /usr.bin/tmux/options-table.c | |
parent | c6a04b6545fc26cfdbd13ded8ee522a2a5d4b896 (diff) |
Add a wrap-search option to turn off wrapping of searches in copy
mode. From Jacobo de Vera.
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 1646c0870b1..7070d22931b 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.23 2012/02/29 21:10:51 nicm Exp $ */ +/* $OpenBSD: options-table.c,v 1.24 2012/03/17 21:40:53 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott <nicm@users.sourceforge.net> @@ -669,6 +669,11 @@ const struct options_table_entry window_options_table[] = { .default_str = "#I:#W#F" }, + { .name = "wrap-search", + .type = OPTIONS_TABLE_FLAG, + .default_num = 1 + }, + { .name = "xterm-keys", .type = OPTIONS_TABLE_FLAG, .default_num = 0 |