comparison runtime/optwin.vim @ 17433:ca8e754bdd53

Update runtime files commit https://github.com/vim/vim/commit/85850f3a5ef9f5a9d22e908ef263de8faa265a95 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jul 19 22:05:51 2019 +0200 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Fri, 19 Jul 2019 22:15:08 +0200
parents c002c4899529
children 95c23e180022
comparison
equal deleted inserted replaced
17432:d13620591637 17433:ca8e754bdd53
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: 2019 May 25 4 " Last Change: 2019 Jul 18
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)
477 call append("$", "winminwidth\tminimal number of columns used for any window") 477 call append("$", "winminwidth\tminimal number of columns used for any window")
478 call append("$", " \tset wmw=" . &wmw) 478 call append("$", " \tset wmw=" . &wmw)
479 call append("$", "helpheight\tinitial height of the help window") 479 call append("$", "helpheight\tinitial height of the help window")
480 call append("$", " \tset hh=" . &hh) 480 call append("$", " \tset hh=" . &hh)
481 if has("quickfix") 481 if has("quickfix")
482 call append("$", "previewpopup\tuse a popup window for preview")
483 call append("$", " \tset pvp=" . &pvp)
482 call append("$", "previewheight\tdefault height for the preview window") 484 call append("$", "previewheight\tdefault height for the preview window")
483 call append("$", " \tset pvh=" . &pvh) 485 call append("$", " \tset pvh=" . &pvh)
484 call append("$", "previewwindow\tidentifies the preview window") 486 call append("$", "previewwindow\tidentifies the preview window")
485 call append("$", "\t(local to window)") 487 call append("$", "\t(local to window)")
486 call <SID>BinOptionL("pvw") 488 call <SID>BinOptionL("pvw")