comparison runtime/optwin.vim @ 7220:1931b890e7d7 v7.4.919

commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Nov 10 19:48:14 2015 +0100 patch 7.4.919 Problem: The dll options are not in the options window. Solution: Add the dll options. And other fixes.
author Christian Brabandt <cb@256bit.org>
date Tue, 10 Nov 2015 20:00:05 +0100
parents ad7ee058c03b
children 4e86d5700260
comparison
equal deleted inserted replaced
7219:170c55b88b4c 7220:1931b890e7d7
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: 2015 Jul 22 4 " Last Change: 2015 Nov 10
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
1305 call append("$", " \tset debug=" . &debug) 1305 call append("$", " \tset debug=" . &debug)
1306 if has("mzscheme") 1306 if has("mzscheme")
1307 call append("$", "mzquantum\tinterval in milliseconds between polls for MzScheme threads") 1307 call append("$", "mzquantum\tinterval in milliseconds between polls for MzScheme threads")
1308 call append("$", " \tset mzq=" . &mzq) 1308 call append("$", " \tset mzq=" . &mzq)
1309 endif 1309 endif
1310 if exists("&luadll")
1311 call append("$", "luadll\tname of the Lua dynamic library")
1312 call <SID>OptionG("luadll", &luadll)
1313 endif
1314 if exists("&perldll")
1315 call append("$", "perldll\tname of the Perl dynamic library")
1316 call <SID>OptionG("perldll", &perldll)
1317 endif
1318 if exists("&pythondll")
1319 call append("$", "pythondll\tname of the Python 2 dynamic library")
1320 call <SID>OptionG("pythondll", &pythondll)
1321 endif
1322 if exists("&pythonthreedll")
1323 call append("$", "pythonthreedll\tname of the Python 3 dynamic library")
1324 call <SID>OptionG("pythonthreedll", &pythonthreedll)
1325 endif
1310 1326
1311 set cpo&vim 1327 set cpo&vim
1312 1328
1313 " go to first line 1329 " go to first line
1314 1 1330 1