@@ -1981,19 +1981,20 @@ argidx() Number current index in the argument list
19811981arglistid([{winnr} [, {tabnr} ]]) Number argument list id
19821982argv({nr} ) String {nr} entry of the argument list
19831983argv() List the argument list
1984- assert_equal({exp} , {act} [, {msg} ]) none assert {exp} is equal to {act}
1985- assert_exception({error} [, {msg} ]) none assert {error} is in v:exception
1986- assert_fails({cmd} [, {error} ]) none assert {cmd} fails
1987- assert_false({actual} [, {msg} ]) none assert {actual} is false
1984+ assert_equal({exp} , {act} [, {msg} ]) none assert {exp} is equal to {act}
1985+ assert_exception({error} [, {msg} ]) none assert {error} is in v:exception
1986+ assert_fails({cmd} [, {error} ]) none assert {cmd} fails
1987+ assert_false({actual} [, {msg} ]) none assert {actual} is false
19881988assert_inrange({lower} , {upper} , {actual} [, {msg} ])
19891989 none assert {actual} is inside the range
1990- assert_match({pat} , {text} [, {msg} ]) none assert {pat} matches {text}
1990+ assert_match({pat} , {text} [, {msg} ]) none assert {pat} matches {text}
19911991assert_notequal({exp} , {act} [, {msg} ]) none assert {exp} is not equal {act}
19921992assert_notmatch({pat} , {text} [, {msg} ]) none assert {pat} not matches {text}
1993- assert_true({actual} [, {msg} ]) none assert {actual} is true
1993+ assert_true({actual} [, {msg} ]) none assert {actual} is true
19941994asin({expr} ) Float arc sine of {expr}
19951995atan({expr} ) Float arc tangent of {expr}
19961996atan2({expr1} , {expr2} ) Float arc tangent of {expr1} / {expr2}
1997+ balloon_show({msg} ) none show {msg} inside the balloon
19971998browse({save} , {title} , {initdir} , {default} )
19981999 String put up a file requester
19992000browsedir({title} , {initdir} ) String put up a directory requester
@@ -2619,6 +2620,25 @@ atan2({expr1}, {expr2}) *atan2()*
26192620< 2.356194
26202621 {only available when compiled with the | +float | feature}
26212622
2623+ balloon_show({msg} ) *balloon_show()*
2624+ Show {msg} inside the balloon.
2625+ Example: >
2626+ func GetBalloonContent()
2627+ " initiate getting the content
2628+ return ''
2629+ endfunc
2630+ set balloonexpr=GetBalloonContent()
2631+
2632+ func BalloonCallback(result)
2633+ call balloon_show(a:result)
2634+ endfunc
2635+ <
2636+ The intended use is that fetching the content of the balloon
2637+ is initiated from 'balloonexpr' . It will invoke an
2638+ asynchronous method, in which a callback invokes
2639+ balloon_show(). The 'balloonexpr' itself can return an
2640+ empty string or a placeholder.
2641+ {only available when compiled with the +beval feature}
26222642
26232643 *browse()*
26242644browse({save} , {title} , {initdir} , {default} )
0 commit comments