diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-06-27 17:09:37 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-06-27 17:09:37 +0200 |
commit | 2e147caa14f622dfd1c1def8e07c113b9b85d4b2 (patch) | |
tree | 53c69cc89daa1da1462c061da18e104ae3972f7e /src/version.c | |
parent | 0b2eef24bcbe2c85c90bbde914a1782cbedc5c72 (diff) | |
download | vim-git-2e147caa14f622dfd1c1def8e07c113b9b85d4b2.tar.gz |
patch 8.0.0683: visual bell flashes too quicklyv8.0.0683
Problem: When using a visual bell there is no delay, causing the flash to
be very short, possibly unnoticeable. Also, the flash and the
beep can lockup the UI when repeated often.
Solution: Do the delay in Vim or flush the output before the delay. Limit the
bell to once per half a second. (Ozaki Kiichi, closes #1789)
Diffstat (limited to 'src/version.c')
-rw-r--r-- | src/version.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/version.c b/src/version.c index c1d5ec841..a5f6f18a6 100644 --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 683, +/**/ 682, /**/ 681, |