commit | c0197e2815208269fa9ba2fba95230138ec39ceb | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Mon Sep 13 20:26:32 2004 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Mon Sep 13 20:26:32 2004 +0000 |
tree | 21db1c3acd16fb095a8e34ce2e15ed87275cbd79 | |
parent | 15d0a8c77dad867b69822e2fd8f9f6bbcf765c48 [diff] [blame] |
updated for version 7.0016
diff --git a/src/normal.c b/src/normal.c index 8ea4ba6..633f209 100644 --- a/src/normal.c +++ b/src/normal.c
@@ -1078,8 +1078,11 @@ 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 */