On Friday, 31 July 2015 11:20:21 UTC+2, Axel Bender wrote:
> Another sample would be the attached file with (failure on "s"):
>
> <CTRL-v>fbds
>
> Version here: 7.4.803 on Windows 7 (MinGW-64).
Hi all,
Please find attached a fix.
(Both issues with the change operator and 's' should
be fixed; undiscovered similar issues that might have
occured should be fixed too.)
Best,
Arnaud
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.
diff --git a/src/normal.c b/src/normal.c
--- a/src/normal.c
+++ b/src/normal.c
@@ -9586,7 +9586,7 @@
{
colnr_T start, end;
- if (VIsual_mode != Ctrl_V)
+ if (!VIsual_active || VIsual_mode != Ctrl_V)
return;
oap->block_mode = TRUE;