diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-06-25 14:39:50 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-06-25 14:39:50 +0200 |
commit | 597a422416f37f8e22ed8f561667d6bab8814958 (patch) | |
tree | 8bada5798d608ac2a37b7f0ddbf7a24e8da4bd25 /src/option.h | |
parent | 15a35c4f4a1670dd6ca228068a451f78d2bf75e0 (diff) | |
download | vim-git-597a422416f37f8e22ed8f561667d6bab8814958.tar.gz |
updated for version 7.4.338v7.4.338
Problem: Cannot wrap lines taking indent into account.
Solution: Add the 'breakindent' option. (many authors, final improvements by
Christian Brabandt)
Diffstat (limited to 'src/option.h')
-rw-r--r-- | src/option.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/option.h b/src/option.h index dc5662948..edf905844 100644 --- a/src/option.h +++ b/src/option.h @@ -1052,6 +1052,10 @@ enum #ifdef FEAT_CURSORBIND , WV_CRBIND #endif +#ifdef FEAT_LINEBREAK + , WV_BRI + , WV_BRIOPT +#endif #ifdef FEAT_DIFF , WV_DIFF #endif |