summaryrefslogtreecommitdiffstats
path: root/src/feature.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-03-06 17:09:20 +0100
committerBram Moolenaar <Bram@vim.org>2018-03-06 17:09:20 +0100
commit157d813be41c122e210b0eb1cd1e862fbddbf665 (patch)
treefec3f8efc523ec6e6ff688cd57f03526c204d66f /src/feature.h
parent3b3a9a5609df2cbaef3512032ac47c1779fbc775 (diff)
patch 8.0.1582: in the MS-Windows console mouse movement is not usedv8.0.1582
Problem: In the MS-Windows console mouse movement is not used. Solution: Pass mouse movement events when useful.
Diffstat (limited to 'src/feature.h')
-rw-r--r--src/feature.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature.h b/src/feature.h
index 772029667f..c80dc05115 100644
--- a/src/feature.h
+++ b/src/feature.h
@@ -1318,7 +1318,7 @@
/*
* +balloon_eval_term Allow balloon expression evaluation in the terminal.
*/
-#if defined(FEAT_HUGE) && defined(UNIX) && defined(FEAT_TIMERS)
+#if defined(FEAT_HUGE) && (defined(UNIX) || defined(WIN32)) && defined(FEAT_TIMERS)
# define FEAT_BEVAL_TERM
#endif