diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-06-26 05:36:34 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-06-26 05:36:34 +0200 |
commit | 8b3e0330ba1fee9ac6293f82f546e08be3f0799c (patch) | |
tree | 25e23e6842c28b3deef1a7f14f6e03c646001830 /src/option.h | |
parent | 20892c1e6830abf25828fb73a72815d904271bd0 (diff) | |
download | vim-git-8b3e0330ba1fee9ac6293f82f546e08be3f0799c.tar.gz |
updated for version 7.3.235v7.3.235
Problem: ";" gets stuck on a "t" command, it's not useful.
Solution: Add the ';' flag in 'cpo'. (Christian Brabandt)
Diffstat (limited to 'src/option.h')
-rw-r--r-- | src/option.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/option.h b/src/option.h index b7f1bd9f4..c47b143c0 100644 --- a/src/option.h +++ b/src/option.h @@ -169,10 +169,12 @@ #define CPO_SUBPERCENT '/' /* % in :s string uses previous one */ #define CPO_BACKSL '\\' /* \ is not special in [] */ #define CPO_CHDIR '.' /* don't chdir if buffer is modified */ +#define CPO_SCOLON ';' /* using "," and ";" will skip over char if + * cursor would not move */ /* default values for Vim, Vi and POSIX */ #define CPO_VIM "aABceFs" -#define CPO_VI "aAbBcCdDeEfFgHiIjJkKlLmMnoOpPqrRsStuvwWxXyZ$!%*-+<>" -#define CPO_ALL "aAbBcCdDeEfFgHiIjJkKlLmMnoOpPqrRsStuvwWxXyZ$!%*-+<>#{|&/\\." +#define CPO_VI "aAbBcCdDeEfFgHiIjJkKlLmMnoOpPqrRsStuvwWxXyZ$!%*-+<>;" +#define CPO_ALL "aAbBcCdDeEfFgHiIjJkKlLmMnoOpPqrRsStuvwWxXyZ$!%*-+<>#{|&/\\.;" /* characters for p_ww option: */ #define WW_ALL "bshl<>[],~" |