comparison runtime/optwin.vim @ 16808:c002c4899529

Update runtime files. commit https://github.com/vim/vim/commit/68e6560b84f196c82e27a72669684d5506a3a837 Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 26 21:33:31 2019 +0200 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Sun, 26 May 2019 21:45:07 +0200
parents 54ffc82f38a8
children ca8e754bdd53
comparison
equal deleted inserted replaced
16807:ce0eea70294d 16808:c002c4899529
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 Feb 08 4 " Last Change: 2019 May 25
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)
413 endif 413 endif
414 call append("$", "highlight\twhich highlighting to use for various occasions") 414 call append("$", "highlight\twhich highlighting to use for various occasions")
415 call <SID>OptionG("hl", &hl) 415 call <SID>OptionG("hl", &hl)
416 call append("$", "hlsearch\thighlight all matches for the last used search pattern") 416 call append("$", "hlsearch\thighlight all matches for the last used search pattern")
417 call <SID>BinOptionG("hls", &hls) 417 call <SID>BinOptionG("hls", &hls)
418 call append("$", "wincolor\thighlight group to use for the window")
419 call append("$", "\t(local to window)")
420 call <SID>OptionL("wcr")
418 if has("termguicolors") 421 if has("termguicolors")
419 call append("$", "termguicolors\tuse GUI colors for the terminal") 422 call append("$", "termguicolors\tuse GUI colors for the terminal")
420 call <SID>BinOptionG("tgc", &tgc) 423 call <SID>BinOptionG("tgc", &tgc)
421 endif 424 endif
422 if has("syntax") 425 if has("syntax")
986 989
987 call <SID>Header("reading and writing files") 990 call <SID>Header("reading and writing files")
988 call append("$", "modeline\tenable using settings from modelines when reading a file") 991 call append("$", "modeline\tenable using settings from modelines when reading a file")
989 call append("$", "\t(local to buffer)") 992 call append("$", "\t(local to buffer)")
990 call <SID>BinOptionL("ml") 993 call <SID>BinOptionL("ml")
994 call append("$", "modelineexpr\tallow setting expression options from a modeline")
995 call <SID>BinOptionG("mle", &mle)
991 call append("$", "modelines\tnumber of lines to check for modelines") 996 call append("$", "modelines\tnumber of lines to check for modelines")
992 call append("$", " \tset mls=" . &mls) 997 call append("$", " \tset mls=" . &mls)
993 call append("$", "binary\tbinary file editing") 998 call append("$", "binary\tbinary file editing")
994 call append("$", "\t(local to buffer)") 999 call append("$", "\t(local to buffer)")
995 call <SID>BinOptionL("bin") 1000 call <SID>BinOptionL("bin")