From f4e2df4527be36a630713fdaad92dd5d3e87756e Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Fri, 12 Oct 2018 21:48:48 -0400 Subject: [PATCH] vim-patch:8.0.0971: 'winptydll' missing from :options Problem: 'winptydll' missing from :options. Solution: Add the entry. https://github.com/vim/vim/commit/0aed9a2e2eb93c43b21a5f781bf07c8a53dbd830 --- runtime/optwin.vim | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 83c509b7cb..64c1d9cfb3 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -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 OptionL("tk") + if exists("&winptydll") + call append("$", "winptydll\tname of the winpty dynamic library") + call OptionG("winptydll", &winptydll) + endif endif