comparison runtime/doc/eval.txt @ 12885:10cb5c3df3f5 v8.0.1319

patch 8.0.1319: can't build GUI on MS-Windows commit https://github.com/vim/vim/commit/669a828cdc1f019e7abda0e5e9b223d7897f06a8 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Nov 19 20:13:05 2017 +0100 patch 8.0.1319: can't build GUI on MS-Windows Problem: Can't build GUI on MS-Windows. Solution: Don't define the balloon_split() function in a GUI-only build.
author Christian Brabandt <cb@256bit.org>
date Sun, 19 Nov 2017 20:15:05 +0100
parents 058e93aee621
children 1578c0ba0dd1
comparison
equal deleted inserted replaced
12884:60a00eeef369 12885:10cb5c3df3f5
2706 balloon_show(). The 'balloonexpr' itself can return an 2706 balloon_show(). The 'balloonexpr' itself can return an
2707 empty string or a placeholder. 2707 empty string or a placeholder.
2708 2708
2709 When showing a balloon is not possible nothing happens, no 2709 When showing a balloon is not possible nothing happens, no
2710 error message. 2710 error message.
2711 {only available when compiled with the +balloon_eval feature} 2711 {only available when compiled with the +balloon_eval or
2712 +balloon_eval_term feature}
2712 2713
2713 balloon_split({msg}) *balloon_split()* 2714 balloon_split({msg}) *balloon_split()*
2714 Split {msg} into lines to be displayed in a balloon. The 2715 Split {msg} into lines to be displayed in a balloon. The
2715 splits are made for the current window size and optimize to 2716 splits are made for the current window size and optimize to
2716 show debugger output. 2717 show debugger output.
2717 Returns a |List| with the split lines. 2718 Returns a |List| with the split lines.
2719 {only available when compiled with the +balloon_eval_term
2720 feature}
2718 2721
2719 *browse()* 2722 *browse()*
2720 browse({save}, {title}, {initdir}, {default}) 2723 browse({save}, {title}, {initdir}, {default})
2721 Put up a file requester. This only works when "has("browse")" 2724 Put up a file requester. This only works when "has("browse")"
2722 returns |TRUE| (only in some GUI versions). 2725 returns |TRUE| (only in some GUI versions).