diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-08-19 23:18:02 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-08-19 23:18:02 +0200 |
commit | 0aed9a2e2eb93c43b21a5f781bf07c8a53dbd830 (patch) | |
tree | 390a74ffaac93b25a1ea16b017eb6d5296a060c7 /runtime/optwin.vim | |
parent | d6a7b3e6bbb8f87507de68d86cf70eab806aab3a (diff) | |
download | vim-git-0aed9a2e2eb93c43b21a5f781bf07c8a53dbd830.tar.gz |
patch 8.0.0971: 'winptydll' missing from :optionsv8.0.0971
Problem: 'winptydll' missing from :options.
Solution: Add the entry.
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r-- | runtime/optwin.vim | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 52f987e88..c7753639c 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 Aug 11 +" Last Change: 2017 Aug 19 " If there already is an option window, jump to that one. let buf = bufnr('option-window') @@ -510,6 +510,10 @@ if has("terminal") call append("$", "termkey\tkey that precedes Vim commands in a terminal window") call append("$", "\t(local to window)") call <SID>OptionL("tk") + if exists("&winptydll") + call append("$", "winptydll\tname of the winpty dynamic library") + call <SID>OptionG("winptydll", &winptydll) + endif endif |