aboutsummaryrefslogtreecommitdiff
path: root/src/nvim
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim')
-rw-r--r--src/nvim/input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/input.c b/src/nvim/input.c
index ca2a13e016..fb89d86a75 100644
--- a/src/nvim/input.c
+++ b/src/nvim/input.c
@@ -159,9 +159,9 @@ int prompt_for_input(char *prompt, int hl_id, bool one_key, bool *mouse_used)
if (prompt == NULL) {
if (mouse_used != NULL) {
- prompt = _("Type number and <Enter> or click with the mouse (q or empty cancels):");
+ prompt = _("Type number and <Enter> or click with the mouse (q or empty cancels): ");
} else {
- prompt = _("Type number and <Enter> (q or empty cancels):");
+ prompt = _("Type number and <Enter> (q or empty cancels): ");
}
}