diff options
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r-- | runtime/optwin.vim | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index ac7000630..127232f26 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: 2017 Sep 10 +" Last Change: 2017 Oct 19 " If there already is an option window, jump to that one. let buf = bufnr('option-window') @@ -1360,6 +1360,12 @@ if exists("&tcldll") call append("$", "tcldll\tname of the Tcl dynamic library") call <SID>OptionG("tcldll", &tcldll) endif +if exists("&mzschemedll") + call append("$", "mzschemedll\tname of the Tcl dynamic library") + call <SID>OptionG("mzschemedll", &mzschemedll) + call append("$", "mzschemegcdll\tname of the Tcl GC dynamic library") + call <SID>OptionG("mzschemegcdll", &mzschemegcdll) +endif set cpo&vim |