summaryrefslogtreecommitdiff
path: root/src/normal.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/normal.c')
-rw-r--r--src/normal.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/normal.c b/src/normal.c
index 8ea4ba64c..633f2093f 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -1078,8 +1078,11 @@ getcount:
goto normal_end;
}
- msg_didout = FALSE; /* don't scroll screen up for normal command */
- msg_col = 0;
+ if (ca.cmdchar != K_IGNORE)
+ {
+ msg_didout = FALSE; /* don't scroll screen up for normal command */
+ msg_col = 0;
+ }
#ifdef FEAT_VISUAL
old_pos = curwin->w_cursor; /* remember where cursor was */