comparison runtime/optwin.vim @ 11659:49c12c93abf3

Updated runtime files and translations. commit https://github.com/vim/vim/commit/74675a666b51edd61e0210132658d81a86c5102c Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 15 13:53:23 2017 +0200 Updated runtime files and translations.
author Christian Brabandt <cb@256bit.org>
date Sat, 15 Jul 2017 14:00:04 +0200
parents 746c1e1be45f
children 4f7081eb1e26
comparison
equal deleted inserted replaced
11658:8486d843ab52 11659:49c12c93abf3
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 Mar 06 4 " Last Change: 2017 Jul 15
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 if bufwinnr("option-window") > 0 7 if bufwinnr("option-window") > 0
8 let s:thiswin = winnr() 8 let s:thiswin = winnr()
9 while 1 9 while 1
504 if has("cursorbind") 504 if has("cursorbind")
505 call append("$", "cursorbind\tthis window's cursor moves together with other bound windows") 505 call append("$", "cursorbind\tthis window's cursor moves together with other bound windows")
506 call append("$", "\t(local to window)") 506 call append("$", "\t(local to window)")
507 call <SID>BinOptionL("crb") 507 call <SID>BinOptionL("crb")
508 endif 508 endif
509 if has("terminal")
510 call append("$", "termsize\tsize of a terminal window")
511 call append("$", "\t(local to window)")
512 call <SID>OptionL("tms")
513 call append("$", "termkey\tkey that precedes Vim commands in a terminal window")
514 call append("$", "\t(local to window)")
515 call <SID>OptionL("tk")
516 endif
509 517
510 518
511 call <SID>Header("multiple tab pages") 519 call <SID>Header("multiple tab pages")
512 call append("$", "showtabline\t0, 1 or 2; when to use a tab pages line") 520 call append("$", "showtabline\t0, 1 or 2; when to use a tab pages line")
513 call append("$", " \tset stal=" . &stal) 521 call append("$", " \tset stal=" . &stal)