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 /runtime/optwin.vim | |
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 'runtime/optwin.vim')
-rw-r--r-- | runtime/optwin.vim | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 280e4e8c6..0c92f1a79 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -324,6 +324,12 @@ call <SID>BinOptionG("wrap", &wrap) call append("$", "linebreak\twrap long lines at a character in 'breakat'") call append("$", "\t(local to window)") call <SID>BinOptionL("lbr") +call append("$", "breakindent\tpreserve indentation in wrapped text") +call append("$", "\t(local to window)") +call <SID>BinOptionL("bri") +call append("$", "breakindentopt\tadjust breakindent behaviour") +call append("$", "\t(local to window)") +call <SID>OptionL("briopt") call append("$", "breakat\twhich characters might cause a line break") call <SID>OptionG("brk", &brk) call append("$", "showbreak\tstring to put before wrapped screen lines") |