Mercurial > vim
changeset 12182:7e6185446ea6 v8.0.0971
patch 8.0.0971: 'winptydll' missing from :options
commit https://github.com/vim/vim/commit/0aed9a2e2eb93c43b21a5f781bf07c8a53dbd830
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Aug 19 23:18:02 2017 +0200
patch 8.0.0971: 'winptydll' missing from :options
Problem: 'winptydll' missing from :options.
Solution: Add the entry.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 19 Aug 2017 23:30:05 +0200 |
parents | 0405537ac0a2 |
children | a85d210b3bdc |
files | runtime/optwin.vim src/version.c |
diffstat | 2 files changed, 7 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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