diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-11-19 19:56:27 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-11-19 19:56:27 +0100 |
commit | 246fe03d154c09070d5b7365b7f61716c4e0ddd4 (patch) | |
tree | 1d0ad5929d17f1af24ac22817bd9fe6c0d5d84f2 /src/proto/beval.pro | |
parent | e518226713784e628ae7ee077f1b66cb12b9ffd9 (diff) | |
download | vim-git-246fe03d154c09070d5b7365b7f61716c4e0ddd4.tar.gz |
patch 8.0.1318: terminal balloon only shows one linev8.0.1318
Problem: Terminal balloon only shows one line.
Solution: Split into several lines in a clever way. Add balloon_split().
Make balloon_show() accept a list in the terminal.
Diffstat (limited to 'src/proto/beval.pro')
-rw-r--r-- | src/proto/beval.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/beval.pro b/src/proto/beval.pro index 716fbbe30..2be64a0da 100644 --- a/src/proto/beval.pro +++ b/src/proto/beval.pro @@ -1,6 +1,6 @@ /* beval.c */ int get_beval_info(BalloonEval *beval, int getword, win_T **winp, linenr_T *lnump, char_u **textp, int *colp); -void post_balloon(BalloonEval *beval, char_u *mesg); +void post_balloon(BalloonEval *beval, char_u *mesg, list_T *list); int can_use_beval(void); void general_beval_cb(BalloonEval *beval, int state); /* vim: set ft=c : */ |