diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-05-09 13:50:16 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-05-09 13:50:16 +0200 |
commit | be0a2597ae0d9eb0b8a8a2fc9ae1784faa929844 (patch) | |
tree | 29c80c119b12d1004fd287f0b63525a931ec59cd /runtime/doc | |
parent | 06bd824869b1cb7a85e64ec94135a35698be5b7f (diff) | |
download | vim-git-be0a2597ae0d9eb0b8a8a2fc9ae1784faa929844.tar.gz |
patch 8.1.1303: not possible to hide a balloonv8.1.1303
Problem: Not possible to hide a balloon.
Solution: Hide the balloon when balloon_show() is called with an empty
string or list. Add balloon_gettext().
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/eval.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 84001b7a0..15732d650 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -2226,6 +2226,7 @@ assert_true({actual} [, {msg}]) Number assert {actual} is true asin({expr}) Float arc sine of {expr} atan({expr}) Float arc tangent of {expr} atan2({expr1}, {expr2}) Float arc tangent of {expr1} / {expr2} +balloon_gettext() String current text in the balloon balloon_show({expr}) none show {expr} inside the balloon balloon_split({msg}) List split {msg} as used for a balloon browse({save}, {title}, {initdir}, {default}) @@ -3007,15 +3008,20 @@ atan2({expr1}, {expr2}) *atan2()* < 2.356194 {only available when compiled with the |+float| feature} +balloon_gettext() *balloon_gettext()* + Return the current text in the balloon. Only for the string, + not used for the List. + balloon_show({expr}) *balloon_show()* Show {expr} inside the balloon. For the GUI {expr} is used as a string. For a terminal {expr} can be a list, which contains the lines of the balloon. If {expr} is not a list it will be split with |balloon_split()|. + If {expr} is an empty string any existing balloon is removed. Example: > func GetBalloonContent() - " initiate getting the content + " ... initiate getting the content return '' endfunc set balloonexpr=GetBalloonContent() @@ -4229,6 +4235,8 @@ feedkeys({string} [, {mode}]) *feedkeys()* and "\..." notation |expr-quote|. For example, feedkeys("\<CR>") simulates pressing of the <Enter> key. But feedkeys('\<CR>') pushes 5 characters. + A special code that might be useful is <Ignore>, it exits the + wait for a character without doing anything. *<Ignore>* {mode} is a String, which can contain these character flags: 'm' Remap keys. This is default. If {mode} is absent, |