Bram,
Here's a patch that fixes the issue by setting KeyTyped to FALSE in the nv_dot
function.
-Jake
--
--
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
@@ -8432,6 +8432,12 @@
if (!checkclearopq(cap->oap))
{
/*
+ * The command to be executed here was not typed and thus should not
+ * be added to the command history.
+ */
+ KeyTyped = FALSE;
+
+ /*
* If "restart_edit" is TRUE, the last but one command is repeated
* instead of the last command (inserting text). This is used for
* CTRL-O <.> in insert mode.