From d0dcf56338e79ad5a56515a0cf057d0c6bbfaa8d Mon Sep 17 00:00:00 2001 From: Joel Teichroeb Date: Fri, 28 Feb 2014 15:37:19 -0800 Subject: Ignore compatible mode --- src/nvim/message.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/message.c') diff --git a/src/nvim/message.c b/src/nvim/message.c index 808253d33c..46e0a1a0df 100644 --- a/src/nvim/message.c +++ b/src/nvim/message.c @@ -839,7 +839,7 @@ void wait_return(int redraw) * to avoid that typing one 'j' too many makes the messages * disappear. */ - if (p_more && !p_cp) { + if (p_more) { if (c == 'b' || c == 'k' || c == 'u' || c == 'g' || c == K_UP || c == K_PAGEUP) { if (msg_scrolled > Rows) -- cgit