diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2021-06-10 07:56:48 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2021-06-10 07:56:48 +0000 |
commit | 00154024a3fef8c3772069d9268ee670acca743e (patch) | |
tree | 2468c738444ce4019b8e36ce4513794e1d7d410f /usr.bin/tmux/options-table.c | |
parent | 098cef322105f433cab1f39f93695f04c1cadd0f (diff) |
More accurate vi(1) word navigation in copy mode and on the status line.
This changes the meaning of the word-separators option - setting it to
the empty string is equivalent to the previous behavior. From Will Noble
in GitHub issue 2693.
Diffstat (limited to 'usr.bin/tmux/options-table.c')
-rw-r--r-- | usr.bin/tmux/options-table.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/usr.bin/tmux/options-table.c b/usr.bin/tmux/options-table.c index c093ebba757..1588b637e2d 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.142 2021/06/10 07:50:03 nicm Exp $ */ +/* $OpenBSD: options-table.c,v 1.143 2021/06/10 07:56:47 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -755,7 +755,11 @@ const struct options_table_entry options_table[] = { { .name = "word-separators", .type = OPTIONS_TABLE_STRING, .scope = OPTIONS_TABLE_SESSION, - .default_str = " ", + /* + * The set of non-alphanumeric printable ASCII characters minus the + * underscore. + */ + .default_str = "!\"#$%&'()*+,-./:;<=>?@[\\]^`{|}~", .text = "Characters considered to separate words." }, |