comparison runtime/optwin.vim @ 40:f1d2a58883b9 v7.0024

updated for version 7.0024
author vimboss
date Fri, 24 Dec 2004 14:35:23 +0000
parents 125e80798a85
children f529edb9bab3
comparison
equal deleted inserted replaced
39:410fa1a31baf 40:f1d2a58883b9
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 09 4 " Last Change: 2004 Dec 20
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
923 call append("$", " \tset wc=" . &wc) 923 call append("$", " \tset wc=" . &wc)
924 call append("$", "wildcharm\tlike 'wildchar' but can also be used in a mapping") 924 call append("$", "wildcharm\tlike 'wildchar' but can also be used in a mapping")
925 call append("$", " \tset wcm=" . &wcm) 925 call append("$", " \tset wcm=" . &wcm)
926 call append("$", "wildmode\tspecifies how command line completion works") 926 call append("$", "wildmode\tspecifies how command line completion works")
927 call <SID>OptionG("wim", &wim) 927 call <SID>OptionG("wim", &wim)
928 if has("wildoptions")
929 call append("$", "wildoptions\tempty or \"tagfile\" to list file name of matching tags")
930 call <SID>OptionG("wop", &wop)
931 endif
928 call append("$", "suffixes\tlist of file name extensions that have a lower priority") 932 call append("$", "suffixes\tlist of file name extensions that have a lower priority")
929 call <SID>OptionG("su", &su) 933 call <SID>OptionG("su", &su)
930 if has("file_in_path") 934 if has("file_in_path")
931 call append("$", "suffixesadd\tlist of file name extensions added when searching for a file") 935 call append("$", "suffixesadd\tlist of file name extensions added when searching for a file")
932 call append("$", "\t(local to buffer)") 936 call append("$", "\t(local to buffer)")