comparison runtime/optwin.vim @ 5995:ef83b423ebf7 v7.4.338

updated for version 7.4.338 Problem: Cannot wrap lines taking indent into account. Solution: Add the 'breakindent' option. (many authors, final improvements by Christian Brabandt)
author Bram Moolenaar <bram@vim.org>
date Wed, 25 Jun 2014 14:39:50 +0200
parents 755931e042e4
children 1e8ebf870720
comparison
equal deleted inserted replaced
5994:ca18c797aafe 5995:ef83b423ebf7
322 call append("$", "wrap\tlong lines wrap") 322 call append("$", "wrap\tlong lines wrap")
323 call <SID>BinOptionG("wrap", &wrap) 323 call <SID>BinOptionG("wrap", &wrap)
324 call append("$", "linebreak\twrap long lines at a character in 'breakat'") 324 call append("$", "linebreak\twrap long lines at a character in 'breakat'")
325 call append("$", "\t(local to window)") 325 call append("$", "\t(local to window)")
326 call <SID>BinOptionL("lbr") 326 call <SID>BinOptionL("lbr")
327 call append("$", "breakindent\tpreserve indentation in wrapped text")
328 call append("$", "\t(local to window)")
329 call <SID>BinOptionL("bri")
330 call append("$", "breakindentopt\tadjust breakindent behaviour")
331 call append("$", "\t(local to window)")
332 call <SID>OptionL("briopt")
327 call append("$", "breakat\twhich characters might cause a line break") 333 call append("$", "breakat\twhich characters might cause a line break")
328 call <SID>OptionG("brk", &brk) 334 call <SID>OptionG("brk", &brk)
329 call append("$", "showbreak\tstring to put before wrapped screen lines") 335 call append("$", "showbreak\tstring to put before wrapped screen lines")
330 call <SID>OptionG("sbr", &sbr) 336 call <SID>OptionG("sbr", &sbr)
331 call append("$", "sidescroll\tminimal number of columns to scroll horizontally") 337 call append("$", "sidescroll\tminimal number of columns to scroll horizontally")