diff options
-rw-r--r-- | src/nvim/message.c | 7 | ||||
-rw-r--r-- | src/nvim/version.c | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/src/nvim/message.c b/src/nvim/message.c index 3163a797ed..637b89ccbe 100644 --- a/src/nvim/message.c +++ b/src/nvim/message.c @@ -2030,9 +2030,10 @@ static int do_more_prompt(int typed_char) int i; // We get called recursively when a timer callback outputs a message. In - // that case don't show another prompt. Also when at the hit-Enter prompt. - if (entered || State == HITRETURN) { - return false; + // that case don't show another prompt. Also when at the hit-Enter prompt + // and nothing was typed. + if (entered || (State == HITRETURN && typed_char == 0)) { + return false; } entered = true; diff --git a/src/nvim/version.c b/src/nvim/version.c index df3fc1cbc2..e292af0068 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -564,7 +564,7 @@ static int included_patches[] = { // 1879 NA // 1878 NA // 1877 NA - // 1876, + 1876, 1875, // 1874 NA // 1873 NA |