summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd-set-option.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2010-02-22 20:41:16 +0000
committernicm <nicm@openbsd.org>2010-02-22 20:41:16 +0000
commit4b9f2369bf14919dc710b784ed5450144b1d1070 (patch)
tree1652199069dd479628f69159cc612ec79383469b /usr.bin/tmux/cmd-set-option.c
parentIn load-buffer, read until EOF rather than using stat() and reading a fixed (diff)
downloadwireguard-openbsd-4b9f2369bf14919dc710b784ed5450144b1d1070.tar.xz
wireguard-openbsd-4b9f2369bf14919dc710b784ed5450144b1d1070.zip
Option to set the characters considered word separators in copy mode, from
Micah Cowan.
Diffstat (limited to 'usr.bin/tmux/cmd-set-option.c')
-rw-r--r--usr.bin/tmux/cmd-set-option.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/cmd-set-option.c b/usr.bin/tmux/cmd-set-option.c
index 42ee6ae583e..3751c02ebc8 100644
--- a/usr.bin/tmux/cmd-set-option.c
+++ b/usr.bin/tmux/cmd-set-option.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd-set-option.c,v 1.34 2010/02/08 00:14:38 nicm Exp $ */
+/* $OpenBSD: cmd-set-option.c,v 1.35 2010/02/22 20:41:16 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -165,6 +165,7 @@ const struct set_option_entry set_window_option_table[] = {
{ "window-status-current-format", SET_OPTION_STRING, 0, 0, NULL },
{ "window-status-fg", SET_OPTION_COLOUR, 0, 0, NULL },
{ "window-status-format", SET_OPTION_STRING, 0, 0, NULL },
+ { "word-separators", SET_OPTION_STRING, 0, 0, NULL },
{ "xterm-keys", SET_OPTION_FLAG, 0, 0, NULL },
{ NULL, 0, 0, 0, NULL }
};