vim-patch:8.0.0971: 'winptydll' missing from :options

Problem:    'winptydll' missing from :options.
Solution:   Add the entry.
0aed9a2e2e
This commit is contained in:
Jan Edmund Lazo 2018-10-12 21:48:48 -04:00
parent 4c780d663f
commit f4e2df4527

View File

@ -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