diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-05-08 22:55:16 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-05-08 22:55:16 +0200 |
commit | 06bd824869b1cb7a85e64ec94135a35698be5b7f (patch) | |
tree | 3d885cd245fb51986f665b2c2556ac044a942e3a /src/normal.c | |
parent | 0b75f7c97cd7f2529884c48dca8edb02abda4bc5 (diff) | |
download | vim-git-06bd824869b1cb7a85e64ec94135a35698be5b7f.tar.gz |
patch 8.1.1302: v:beval_text is not tested in Visual modev8.1.1302
Problem: v:beval_text is not tested in Visual mode.
Solution: Add a screenshot of the balloon in Visual mode.
Diffstat (limited to 'src/normal.c')
-rw-r--r-- | src/normal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/normal.c b/src/normal.c index 06595e98c..8d4cf0937 100644 --- a/src/normal.c +++ b/src/normal.c @@ -2326,10 +2326,10 @@ do_mouse( if (c == K_MOUSEMOVE) { - /* Mouse moved without a button pressed. */ + // Mouse moved without a button pressed. #ifdef FEAT_BEVAL_TERM ui_may_remove_balloon(); - if (p_bevalterm && !VIsual_active) + if (p_bevalterm) { profile_setlimit(p_bdlay, &bevalexpr_due); bevalexpr_due_set = TRUE; |