0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

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 #5391)
This commit is contained in:
Bram Moolenaar
2019-12-22 15:38:06 +01:00
parent a27655ef6d
commit 64e74c9cc7
5 changed files with 24 additions and 4 deletions

View File

@@ -5462,7 +5462,6 @@ tv_get_number_chk(typval_T *varp, int *denote)
break;
case VAR_SPECIAL:
return varp->vval.v_number == VVAL_TRUE ? 1 : 0;
break;
case VAR_JOB:
#ifdef FEAT_JOB_CHANNEL
emsg(_("E910: Using a Job as a Number"));
@@ -6147,7 +6146,7 @@ last_set_msg(sctx_T script_ctx)
msg_puts((char *)p);
if (script_ctx.sc_lnum > 0)
{
msg_puts(_(" line "));
msg_puts(_(line_msg));
msg_outnum((long)script_ctx.sc_lnum);
}
verbose_leave();