diff options
author | Joel Teichroeb <joel@teichroeb.net> | 2014-02-28 15:37:19 -0800 |
---|---|---|
committer | Joel Teichroeb <joel@teichroeb.net> | 2014-12-13 11:43:48 -0800 |
commit | d0dcf56338e79ad5a56515a0cf057d0c6bbfaa8d (patch) | |
tree | e7d4384a85952f418b364f2477b93db70359f732 /src/nvim/message.c | |
parent | a44f39955f232d26076edceb3c5d9f16ffde9cbd (diff) | |
download | rneovim-d0dcf56338e79ad5a56515a0cf057d0c6bbfaa8d.tar.gz rneovim-d0dcf56338e79ad5a56515a0cf057d0c6bbfaa8d.tar.bz2 rneovim-d0dcf56338e79ad5a56515a0cf057d0c6bbfaa8d.zip |
Ignore compatible mode
Diffstat (limited to 'src/nvim/message.c')
-rw-r--r-- | src/nvim/message.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |