diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-12-22 18:45:17 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-12-22 19:43:18 -0500 |
commit | 80ebfc304e295cdb1bed3d0f2781d7884933719a (patch) | |
tree | 32158dcff76a1b976223c9cb387b52fc68599ba6 /src/nvim/eval.c | |
parent | bc8da6cdbe4e300344e45dbc2eb5b22a7afc9e89 (diff) | |
download | rneovim-80ebfc304e295cdb1bed3d0f2781d7884933719a.tar.gz rneovim-80ebfc304e295cdb1bed3d0f2781d7884933719a.tar.bz2 rneovim-80ebfc304e295cdb1bed3d0f2781d7884933719a.zip |
vim-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 vim/vim#5391)
https://github.com/vim/vim/commit/64e74c9cc7d5aab215cf72d9bdd3aac32e128191
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r-- | src/nvim/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 04899f2c99..70fea1c4a9 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -24076,7 +24076,7 @@ void option_last_set_msg(LastSet last_set) MSG_PUTS(_("\n\tLast set from ")); MSG_PUTS(p); if (last_set.script_ctx.sc_lnum > 0) { - MSG_PUTS(_(" line ")); + MSG_PUTS(_(line_msg)); msg_outnum((long)last_set.script_ctx.sc_lnum); } if (should_free) { |