aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ops.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r--src/nvim/ops.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c
index 7dcf4c433e..0f202b2fd3 100644
--- a/src/nvim/ops.c
+++ b/src/nvim/ops.c
@@ -6041,6 +6041,10 @@ void cursor_pos_info(dict_T *dict)
// Don't shorten this message, the user asked for it.
p = p_shm;
p_shm = (char_u *)"";
+ if (p_ch < 1) {
+ msg_start();
+ msg_scroll = true;
+ }
msg((char *)IObuff);
p_shm = p;
}