comparison runtime/optwin.vim @ 41:f529edb9bab3 v7.0025

updated for version 7.0025
author vimboss
date Mon, 27 Dec 2004 21:59:20 +0000
parents f1d2a58883b9
children 476198990769
comparison
equal deleted inserted replaced
40:f1d2a58883b9 41:f529edb9bab3
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: 2004 Dec 20 4 " Last Change: 2004 Dec 24
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
665 call append("$", "\t(local to buffer)") 665 call append("$", "\t(local to buffer)")
666 call <SID>OptionL("com") 666 call <SID>OptionL("com")
667 call append("$", "formatoptions\tlist of flags that tell how automatic formatting works") 667 call append("$", "formatoptions\tlist of flags that tell how automatic formatting works")
668 call append("$", "\t(local to buffer)") 668 call append("$", "\t(local to buffer)")
669 call <SID>OptionL("fo") 669 call <SID>OptionL("fo")
670 call append("$", "formatlistpat\tpattern to recognize a numbered list")
671 call append("$", "\t(local to buffer)")
672 call <SID>OptionL("flp")
670 if has("insert_expand") 673 if has("insert_expand")
671 call append("$", "complete\tspecifies how Insert mode completion works") 674 call append("$", "complete\tspecifies how Insert mode completion works")
672 call append("$", "\t(local to buffer)") 675 call append("$", "\t(local to buffer)")
673 call <SID>OptionL("cpt") 676 call <SID>OptionL("cpt")
674 call append("$", "completefunc\tuser defined function for Insert mode completion") 677 call append("$", "completefunc\tuser defined function for Insert mode completion")