comparison runtime/optwin.vim @ 13742:a34b1323286c v8.0.1743

patch 8.0.1743: terminal window options are named inconsistently commit https://github.com/vim/vim/commit/6d150f783d5d3820fe69734dda1e79b8276a84d2 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 21 20:03:20 2018 +0200 patch 8.0.1743: terminal window options are named inconsistently Problem: Terminal window options are named inconsistently. Solution: prefix terminal window options with "termwin". Keep the old names for now as an alias.
author Christian Brabandt <cb@256bit.org>
date Sat, 21 Apr 2018 20:15:07 +0200
parents 4dbf2a6972e6
children e751b5c9dff3
comparison
equal deleted inserted replaced
13741:ef2ae120f25c 13742:a34b1323286c
504 call append("$", "cursorbind\tthis window's cursor moves together with other bound windows") 504 call append("$", "cursorbind\tthis window's cursor moves together with other bound windows")
505 call append("$", "\t(local to window)") 505 call append("$", "\t(local to window)")
506 call <SID>BinOptionL("crb") 506 call <SID>BinOptionL("crb")
507 endif 507 endif
508 if has("terminal") 508 if has("terminal")
509 call append("$", "termsize\tsize of a terminal window") 509 call append("$", "termwinsize\tsize of a terminal window")
510 call append("$", "\t(local to window)") 510 call append("$", "\t(local to window)")
511 call <SID>OptionL("tms") 511 call <SID>OptionL("tws")
512 call append("$", "termkey\tkey that precedes Vim commands in a terminal window") 512 call append("$", "termwinkey\tkey that precedes Vim commands in a terminal window")
513 call append("$", "\t(local to window)") 513 call append("$", "\t(local to window)")
514 call <SID>OptionL("tk") 514 call <SID>OptionL("twk")
515 call append("$", "termwinscroll\tmax number of lines to keep for scrollback in a terminal window")
516 call append("$", "\t(local to window)")
517 call <SID>OptionL("twsl")
515 if exists("&winptydll") 518 if exists("&winptydll")
516 call append("$", "winptydll\tname of the winpty dynamic library") 519 call append("$", "winptydll\tname of the winpty dynamic library")
517 call <SID>OptionG("winptydll", &winptydll) 520 call <SID>OptionG("winptydll", &winptydll)
518 endif 521 endif
519 endif 522 endif