comparison runtime/optwin.vim @ 6153:1e8ebf870720

Updated runtime files.
author Bram Moolenaar <bram@vim.org>
date Fri, 22 Aug 2014 19:21:47 +0200
parents ef83b423ebf7
children 31f7581068a9
comparison
equal deleted inserted replaced
6152:9d02417f8af0 6153:1e8ebf870720
1 " These commands create the option window. 1 " These commands create the option window.
2 " 2 "
3 " Maintainer: Bram Moolenaar <Bram@vim.org> 3 " Maintainer: Bram Moolenaar <Bram@vim.org>
4 " Last Change: 2014 Apr 01 4 " Last Change: 2014 Aug 06
5 5
6 " If there already is an option window, jump to that one. 6 " If there already is an option window, jump to that one.
7 if bufwinnr("option-window") > 0 7 if bufwinnr("option-window") > 0
8 let s:thiswin = winnr() 8 let s:thiswin = winnr()
9 while 1 9 while 1
604 call <SID>OptionG("tbis", &tbis) 604 call <SID>OptionG("tbis", &tbis)
605 endif 605 endif
606 call append("$", "guiheadroom\troom (in pixels) left above/below the window") 606 call append("$", "guiheadroom\troom (in pixels) left above/below the window")
607 call append("$", " \tset ghr=" . &ghr) 607 call append("$", " \tset ghr=" . &ghr)
608 endif 608 endif
609 if has("directx")
610 call append("$", "renderoptions\toptions for text rendering")
611 call <SID>OptionG("rop", &rop)
612 endif
609 call append("$", "guipty\tuse a pseudo-tty for I/O to external commands") 613 call append("$", "guipty\tuse a pseudo-tty for I/O to external commands")
610 call <SID>BinOptionG("guipty", &guipty) 614 call <SID>BinOptionG("guipty", &guipty)
611 if has("browse") 615 if has("browse")
612 call append("$", "browsedir\t\"last\", \"buffer\" or \"current\": which directory used for the file browser") 616 call append("$", "browsedir\t\"last\", \"buffer\" or \"current\": which directory used for the file browser")
613 call <SID>OptionG("bsdir", &bsdir) 617 call <SID>OptionG("bsdir", &bsdir)