diff src/globals.h @ 18939:25ebc35e104f v8.2.0030

patch 8.2.0030: "gF" does not work on output of "verbose command" Commit: https://github.com/vim/vim/commit/64e74c9cc7d5aab215cf72d9bdd3aac32e128191 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Dec 22 15:38:06 2019 +0100 patch 8.2.0030: "gF" does not work on output of "verbose command" Problem: "gF" does not work on output of "verbose command". Solution: Recognize " line " and translations. (closes https://github.com/vim/vim/issues/5391)
author Bram Moolenaar <Bram@vim.org>
date Sun, 22 Dec 2019 15:45:03 +0100
parents 49b78d6465e5
children 5c405689da3e
line wrap: on
line diff
--- 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