diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-03-06 17:09:20 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-03-06 17:09:20 +0100 |
commit | 157d813be41c122e210b0eb1cd1e862fbddbf665 (patch) | |
tree | fec3f8efc523ec6e6ff688cd57f03526c204d66f /src/feature.h | |
parent | 3b3a9a5609df2cbaef3512032ac47c1779fbc775 (diff) | |
download | vim-git-157d813be41c122e210b0eb1cd1e862fbddbf665.tar.gz |
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.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature.h b/src/feature.h index 772029667..c80dc0511 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 |