File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11" These commands create the option window.
22"
33" Maintainer: Bram Moolenaar <[email protected] >4- " Last Change: 2015 Jul 22
4+ " Last Change: 2015 Nov 10
55
66" If there already is an option window, jump to that one.
77if bufwinnr (" option-window" ) > 0
@@ -1307,6 +1307,22 @@ if has("mzscheme")
13071307 call append (" $" , " mzquantum\t interval in milliseconds between polls for MzScheme threads" )
13081308 call append (" $" , " \t set mzq=" . &mzq )
13091309endif
1310+ if exists (" &luadll" )
1311+ call append (" $" , " luadll\t name of the Lua dynamic library" )
1312+ call <SID> OptionG (" luadll" , &luadll )
1313+ endif
1314+ if exists (" &perldll" )
1315+ call append (" $" , " perldll\t name of the Perl dynamic library" )
1316+ call <SID> OptionG (" perldll" , &perldll )
1317+ endif
1318+ if exists (" &pythondll" )
1319+ call append (" $" , " pythondll\t name of the Python 2 dynamic library" )
1320+ call <SID> OptionG (" pythondll" , &pythondll )
1321+ endif
1322+ if exists (" &pythonthreedll" )
1323+ call append (" $" , " pythonthreedll\t name of the Python 3 dynamic library" )
1324+ call <SID> OptionG (" pythonthreedll" , &pythonthreedll )
1325+ endif
13101326
13111327set cpo &vim
13121328
Original file line number Diff line number Diff line change @@ -741,6 +741,8 @@ static char *(features[]) =
741741
742742static int included_patches [] =
743743{ /* Add new patch number below this line */
744+ /**/
745+ 919 ,
744746/**/
745747 918 ,
746748/**/
You can’t perform that action at this time.
0 commit comments