comparison runtime/optwin.vim @ 5055:c458ff35497e

Updated runtime files.
author Bram Moolenaar <bram@vim.org>
date Sat, 29 Jun 2013 23:05:20 +0200
parents 605c9ce57ec3
children 06e5f65c34d8
comparison
equal deleted inserted replaced
5054:0c6bec876f9c 5055:c458ff35497e
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: 2013 May 20 4 " Last Change: 2013 Jun 29
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
1196 call append("$", "\t(local to window)") 1196 call append("$", "\t(local to window)")
1197 call <SID>OptionL("ims") 1197 call <SID>OptionL("ims")
1198 if has("xim") 1198 if has("xim")
1199 call append("$", "imcmdline\twhen set always use IM when starting to edit a command line") 1199 call append("$", "imcmdline\twhen set always use IM when starting to edit a command line")
1200 call <SID>BinOptionG("imc", &imc) 1200 call <SID>BinOptionG("imc", &imc)
1201 call append("$", "imstatusfunc\tfunction to obtain IME status")
1202 call <SID>OptionG("imsf", &imsf)
1203 call append("$", "imactivatefunc\tfunction to enable/disable IME")
1204 call <SID>OptionG("imaf", &imaf)
1201 endif 1205 endif
1202 1206
1203 1207
1204 if has("multi_byte") 1208 if has("multi_byte")
1205 call <SID>Header("multi-byte characters") 1209 call <SID>Header("multi-byte characters")