diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-11-10 19:48:14 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-11-10 19:48:14 +0100 |
commit | d4ece23e2e602d820ab7367c383dc0d72dd87029 (patch) | |
tree | 210d3568ca1580cfbc1bfb2f97803b2327506f8f /runtime/optwin.vim | |
parent | 0796c0625fa4b9eb2f47fe8c976b78523924e1fb (diff) | |
download | vim-d4ece23e2e602d820ab7367c383dc0d72dd87029.zip |
patch 7.4.919
Problem: The dll options are not in the options window.
Solution: Add the dll options. And other fixes.
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r-- | runtime/optwin.vim | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index e5bd6c802..d1e53367b 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -1,7 +1,7 @@ " These commands create the option window. " " Maintainer: Bram Moolenaar <Bram@vim.org> -" Last Change: 2015 Jul 22 +" Last Change: 2015 Nov 10 " If there already is an option window, jump to that one. if bufwinnr("option-window") > 0 @@ -1307,6 +1307,22 @@ if has("mzscheme") call append("$", "mzquantum\tinterval in milliseconds between polls for MzScheme threads") call append("$", " \tset mzq=" . &mzq) endif +if exists("&luadll") + call append("$", "luadll\tname of the Lua dynamic library") + call <SID>OptionG("luadll", &luadll) +endif +if exists("&perldll") + call append("$", "perldll\tname of the Perl dynamic library") + call <SID>OptionG("perldll", &perldll) +endif +if exists("&pythondll") + call append("$", "pythondll\tname of the Python 2 dynamic library") + call <SID>OptionG("pythondll", &pythondll) +endif +if exists("&pythonthreedll") + call append("$", "pythonthreedll\tname of the Python 3 dynamic library") + call <SID>OptionG("pythonthreedll", &pythonthreedll) +endif set cpo&vim |