comparison runtime/optwin.vim @ 12909:1578c0ba0dd1

Update runtime files. commit https://github.com/vim/vim/commit/a2a80162deb1e96e16b097dfe48b61b6eb0824bf Author: Bram Moolenaar <Bram@vim.org> Date: Tue Nov 21 23:09:50 2017 +0100 Update runtime files.
author Christian Brabandt <cb@256bit.org>
date Tue, 21 Nov 2017 23:15:06 +0100
parents 3b26420fc639
children 53cc7ea77c54
comparison
equal deleted inserted replaced
12908:0e296474b577 12909:1578c0ba0dd1
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 Oct 19 4 " Last Change: 2017 Nov 21
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)
645 call append("$", "winaltkeys\t\"no\", \"yes\" or \"menu\"; how to use the ALT key") 645 call append("$", "winaltkeys\t\"no\", \"yes\" or \"menu\"; how to use the ALT key")
646 call <SID>OptionG("wak", &wak) 646 call <SID>OptionG("wak", &wak)
647 endif 647 endif
648 call append("$", "linespace\tnumber of pixel lines to use between characters") 648 call append("$", "linespace\tnumber of pixel lines to use between characters")
649 call append("$", " \tset lsp=" . &lsp) 649 call append("$", " \tset lsp=" . &lsp)
650 if has("balloon_eval") 650 if has("balloon_eval") || has("balloon_eval_term")
651 call append("$", "balloondelay\tdelay in milliseconds before a balloon may pop up") 651 call append("$", "balloondelay\tdelay in milliseconds before a balloon may pop up")
652 call append("$", " \tset bdlay=" . &bdlay) 652 call append("$", " \tset bdlay=" . &bdlay)
653 call append("$", "ballooneval\twhether the balloon evaluation is to be used") 653 if has("balloon_eval")
654 call <SID>BinOptionG("beval", &beval) 654 call append("$", "ballooneval\tuse balloon evaluation in the GUI")
655 call <SID>BinOptionG("beval", &beval)
656 endif
657 if has("balloon_eval_term")
658 call append("$", "balloonevalterm\tuse balloon evaluation in the terminal")
659 call <SID>BinOptionG("bevalterm", &beval)
660 endif
655 if has("eval") 661 if has("eval")
656 call append("$", "balloonexpr\texpression to show in balloon eval") 662 call append("$", "balloonexpr\texpression to show in balloon eval")
657 call append("$", " \tset bexpr=" . &bexpr) 663 call append("$", " \tset bexpr=" . &bexpr)
658 endif 664 endif
659 endif 665 endif