comparison runtime/optwin.vim @ 12756:3b26420fc639

Long overdue runtime update. commit https://github.com/vim/vim/commit/01164a6546b4c635daf96a1f17d1cb2d07f32a66 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Nov 2 22:58:42 2017 +0100 Long overdue runtime update.
author Christian Brabandt <cb@256bit.org>
date Thu, 02 Nov 2017 23:00:08 +0100
parents d91cf2e26ef0
children 1578c0ba0dd1
comparison
equal deleted inserted replaced
12755:3529eea08ad9 12756:3b26420fc639
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: 2017 Sep 10 4 " Last Change: 2017 Oct 19
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 let buf = bufnr('option-window') 7 let buf = bufnr('option-window')
8 if buf >= 0 8 if buf >= 0
9 let winids = win_findbuf(buf) 9 let winids = win_findbuf(buf)
1358 endif 1358 endif
1359 if exists("&tcldll") 1359 if exists("&tcldll")
1360 call append("$", "tcldll\tname of the Tcl dynamic library") 1360 call append("$", "tcldll\tname of the Tcl dynamic library")
1361 call <SID>OptionG("tcldll", &tcldll) 1361 call <SID>OptionG("tcldll", &tcldll)
1362 endif 1362 endif
1363 if exists("&mzschemedll")
1364 call append("$", "mzschemedll\tname of the Tcl dynamic library")
1365 call <SID>OptionG("mzschemedll", &mzschemedll)
1366 call append("$", "mzschemegcdll\tname of the Tcl GC dynamic library")
1367 call <SID>OptionG("mzschemegcdll", &mzschemegcdll)
1368 endif
1363 1369
1364 set cpo&vim 1370 set cpo&vim
1365 1371
1366 " go to first line 1372 " go to first line
1367 1 1373 1