patch 8.0.1582: in the MS-Windows console mouse movement is not used
Problem: In the MS-Windows console mouse movement is not used.
Solution: Pass mouse movement events when useful.
diff --git a/src/feature.h b/src/feature.h
index 7720296..c80dc05 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