diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2010-02-22 20:41:16 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2010-02-22 20:41:16 +0000 |
commit | 6767072c9d4774e8e44d7222c01ecee08a35dad8 (patch) | |
tree | 49a03195220386ce2b182213804ea76a83bae4ce /tmux.c | |
parent | efbcf8747da18d62ed83d34d5eda1ba56d658f82 (diff) | |
download | rtmux-6767072c9d4774e8e44d7222c01ecee08a35dad8.tar.gz rtmux-6767072c9d4774e8e44d7222c01ecee08a35dad8.tar.bz2 rtmux-6767072c9d4774e8e44d7222c01ecee08a35dad8.zip |
Option to set the characters considered word separators in copy mode, from
Micah Cowan.
Diffstat (limited to 'tmux.c')
-rw-r--r-- | tmux.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -418,6 +418,7 @@ main(int argc, char **argv) options_set_number(wo, "window-status-fg", 8); options_set_string(wo, "window-status-format", "#I:#W#F"); options_set_string(wo, "window-status-current-format", "#I:#W#F"); + options_set_string(wo, "word-separators", " -_@"); options_set_number(wo, "xterm-keys", 0); options_set_number(wo, "remain-on-exit", 0); options_set_number(wo, "synchronize-panes", 0); |