aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Edmund Lazo <janedmundlazo@hotmail.com>2018-10-12 21:48:48 -0400
committerJan Edmund Lazo <janedmundlazo@hotmail.com>2018-10-12 21:49:22 -0400
commitf4e2df4527be36a630713fdaad92dd5d3e87756e (patch)
tree0bec82f48c7e55468f35a2d919487b278eeba1c5
parent4c780d663f6ea8ab350e95a707bb98a96c4cc701 (diff)
downloadrneovim-f4e2df4527be36a630713fdaad92dd5d3e87756e.tar.gz
rneovim-f4e2df4527be36a630713fdaad92dd5d3e87756e.tar.bz2
rneovim-f4e2df4527be36a630713fdaad92dd5d3e87756e.zip
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
-rw-r--r--runtime/optwin.vim4
1 files changed, 4 insertions, 0 deletions
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 <SID>OptionL("tk")
+ if exists("&winptydll")
+ call append("$", "winptydll\tname of the winpty dynamic library")
+ call <SID>OptionG("winptydll", &winptydll)
+ endif
endif