=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/options-table.c,v retrieving revision 1.142 retrieving revision 1.143 diff -u -r1.142 -r1.143 --- src/usr.bin/tmux/options-table.c 2021/06/10 07:50:03 1.142 +++ src/usr.bin/tmux/options-table.c 2021/06/10 07:56:47 1.143 @@ -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 @@ -755,7 +755,11 @@ { .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." },