When showing a balloon is not possible nothing happens, no
error message.
- {only available when compiled with the +balloon_eval feature}
+ {only available when compiled with the +balloon_eval or
+ +balloon_eval_term feature}
balloon_split({msg}) *balloon_split()*
Split {msg} into lines to be displayed in a balloon. The
splits are made for the current window size and optimize to
show debugger output.
Returns a |List| with the split lines.
+ {only available when compiled with the +balloon_eval_term
+ feature}
*browse()*
browse({save}, {title}, {initdir}, {default})
#endif
#ifdef FEAT_BEVAL
static void f_balloon_show(typval_T *argvars, typval_T *rettv);
+# if defined(FEAT_BEVAL_TERM)
static void f_balloon_split(typval_T *argvars, typval_T *rettv);
+# endif
#endif
static void f_browse(typval_T *argvars, typval_T *rettv);
static void f_browsedir(typval_T *argvars, typval_T *rettv);
#endif
#ifdef FEAT_BEVAL
{"balloon_show", 1, 1, f_balloon_show},
+# if defined(FEAT_BEVAL_TERM)
{"balloon_split", 1, 1, f_balloon_split},
+# endif
#endif
{"browse", 4, 4, f_browse},
{"browsedir", 2, 2, f_browsedir},
}
}
+# if defined(FEAT_BEVAL_TERM)
static void
f_balloon_split(typval_T *argvars, typval_T *rettv UNUSED)
{
}
}
}
+# endif
#endif
/*