diff src/feature.h @ 13416:e534e8b21fd7 v8.0.1582

patch 8.0.1582: in the MS-Windows console mouse movement is not used commit https://github.com/vim/vim/commit/157d813be41c122e210b0eb1cd1e862fbddbf665 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 6 17:09:20 2018 +0100 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.
author Christian Brabandt <cb@256bit.org>
date Tue, 06 Mar 2018 17:15:06 +0100
parents 58a1104c343e
children 6dbf1e9ebd1f
line wrap: on
line diff
--- 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