On Do, 08 Aug 2013, glts wrote:
> When I run an external command like :!find I can see the output in the
> messages area and the prompt
>
> Press ENTER or type command to continue
>
> By reflex I hit "u" to scroll up and I got
>
> Press ENTER or type command to continuePress ENTER or type command to continue
>
> Every "u" adds another enter prompt at the bottom. This is in Vim 7.4a.
> Can anyone else see this behaviour?
I see it to. I think this patch fixes it, by disallowing 'u' in that
case:
diff --git a/src/message.c b/src/message.c
--- a/src/message.c
+++ b/src/message.c
@@ -1004,7 +1004,7 @@
quit_more = FALSE;
got_int = FALSE;
}
- else
+ else if (c != K_IGNORE)
{
c = K_IGNORE;
hit_return_msg();
regards,
Christian
--
DAU kommt und fragt, wo denn der Einschalter für den PC ist. Er
bekommt gezeigt, wo er angeht. Ca. eine halbe Stunde später kommt
derselbe und fragt, wo die Kiste ausgeschaltet wird.
--
--
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/groups/opt_out.