summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-12-22 15:38:06 +0100
committerBram Moolenaar <Bram@vim.org>2019-12-22 15:38:06 +0100
commit64e74c9cc7d5aab215cf72d9bdd3aac32e128191 (patch)
treef56e752def4d77a8c2411a447cc4f47c3fc2b08e /src/globals.h
parenta27655ef6d0001c7c2265ea682455ec82acee826 (diff)
patch 8.2.0030: "gF" does not work on output of "verbose command"v8.2.0030
Problem: "gF" does not work on output of "verbose command". Solution: Recognize " line " and translations. (closes #5391)
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/globals.h b/src/globals.h
index 77a42d8ef6..9ddb164413 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -1660,6 +1660,8 @@ EXTERN short disallow_gui INIT(= FALSE);
EXTERN char top_bot_msg[] INIT(= N_("search hit TOP, continuing at BOTTOM"));
EXTERN char bot_top_msg[] INIT(= N_("search hit BOTTOM, continuing at TOP"));
+EXTERN char line_msg[] INIT(= N_(" line "));
+
#ifdef FEAT_CRYPT
EXTERN char need_key_msg[] INIT(= N_("Need encryption key for \"%s\""));
#endif