diff options
| author | Tiago Cunha <tcunha@gmx.com> | 2010-02-26 13:31:39 +0000 |
|---|---|---|
| committer | Tiago Cunha <tcunha@gmx.com> | 2010-02-26 13:31:39 +0000 |
| commit | b7d5b911ac17fdcfa457dcab07dce4da4a7506f5 (patch) | |
| tree | 15effb03ecc0514e3d98388cdf0262f5be1dc203 /tmux.c | |
| parent | 8da8bc477f120871922bc4f87e0db23d01438862 (diff) | |
| download | rtmux-b7d5b911ac17fdcfa457dcab07dce4da4a7506f5.tar.gz rtmux-b7d5b911ac17fdcfa457dcab07dce4da4a7506f5.tar.bz2 rtmux-b7d5b911ac17fdcfa457dcab07dce4da4a7506f5.zip | |
Sync OpenBSD patchset 653:
Option to set the characters considered word separators in copy mode, from
Micah Cowan.
Diffstat (limited to 'tmux.c')
| -rw-r--r-- | tmux.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.c,v 1.203 2010-02-08 18:32:34 tcunha Exp $ */ +/* $Id: tmux.c,v 1.204 2010-02-26 13:31:39 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -421,6 +421,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); |