diff options
author | 2010-02-22 20:41:16 +0000 | |
---|---|---|
committer | 2010-02-22 20:41:16 +0000 | |
commit | 4b9f2369bf14919dc710b784ed5450144b1d1070 (patch) | |
tree | 1652199069dd479628f69159cc612ec79383469b /usr.bin/tmux/cmd-set-option.c | |
parent | In load-buffer, read until EOF rather than using stat() and reading a fixed (diff) | |
download | wireguard-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.c | 3 |
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 } }; |