comparison runtime/optwin.vim @ 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 84066f043ab9
children d91cf2e26ef0
comparison
equal deleted inserted replaced
12181:0405537ac0a2 12182:7e6185446ea6
1 " These commands create the option window. 1 " These commands create the option window.
2 " 2 "
3 " Maintainer: Bram Moolenaar <Bram@vim.org> 3 " Maintainer: Bram Moolenaar <Bram@vim.org>
4 " Last Change: 2017 Aug 11 4 " Last Change: 2017 Aug 19
5 5
6 " If there already is an option window, jump to that one. 6 " If there already is an option window, jump to that one.
7 let buf = bufnr('option-window') 7 let buf = bufnr('option-window')
8 if buf >= 0 8 if buf >= 0
9 let winids = win_findbuf(buf) 9 let winids = win_findbuf(buf)
508 call append("$", "\t(local to window)") 508 call append("$", "\t(local to window)")
509 call <SID>OptionL("tms") 509 call <SID>OptionL("tms")
510 call append("$", "termkey\tkey that precedes Vim commands in a terminal window") 510 call append("$", "termkey\tkey that precedes Vim commands in a terminal window")
511 call append("$", "\t(local to window)") 511 call append("$", "\t(local to window)")
512 call <SID>OptionL("tk") 512 call <SID>OptionL("tk")
513 if exists("&winptydll")
514 call append("$", "winptydll\tname of the winpty dynamic library")
515 call <SID>OptionG("winptydll", &winptydll)
516 endif
513 endif 517 endif
514 518
515 519
516 call <SID>Header("multiple tab pages") 520 call <SID>Header("multiple tab pages")
517 call append("$", "showtabline\t0, 1 or 2; when to use a tab pages line") 521 call append("$", "showtabline\t0, 1 or 2; when to use a tab pages line")