diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-09-26 14:13:09 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-09-26 14:13:09 +0000 |
commit | d659a0b36fb917c7fe036bb38072489f8f821cb7 (patch) | |
tree | ae203b3b383a90ac24d7f311ef8296e883562398 /usr.bin/vim/option.h | |
parent | 1f98c5e2381ad9dd2ba3bf3dfdb5db9b7b68ca13 (diff) |
Make cw handling an option.
Diffstat (limited to 'usr.bin/vim/option.h')
-rw-r--r-- | usr.bin/vim/option.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/vim/option.h b/usr.bin/vim/option.h index 47d7578da73..192fceaf189 100644 --- a/usr.bin/vim/option.h +++ b/usr.bin/vim/option.h @@ -1,4 +1,4 @@ -/* $OpenBSD: option.h,v 1.2 1996/09/21 06:23:15 downsj Exp $ */ +/* $OpenBSD: option.h,v 1.3 1996/09/26 14:13:08 downsj Exp $ */ /* vi:set ts=4 sw=4: * * VIM - Vi IMproved by Bram Moolenaar @@ -51,13 +51,14 @@ #define CPO_BUFOPT 's' #define CPO_BUFOPTGLOB 'S' #define CPO_TAGPAT 't' +#define CPO_CW 'w' /* "cw" only changes one blank */ #define CPO_ESC 'x' #define CPO_DOLLAR '$' #define CPO_FILTER '!' #define CPO_MATCH '%' #define CPO_SPECI '<' /* don't recognize <> in mappings */ #define CPO_DEFAULT "BceFs" -#define CPO_ALL "bBcefFkmorsStx$!%<" +#define CPO_ALL "bBcefFkmorsStwx$!%<" /* characters for p_ww option: */ #define WW_ALL "bshl<>[]," |