diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2019-12-23 07:16:21 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-23 07:16:21 +0100 |
| commit | 2ef72437fc2e20ed7eee2520d818d3039b8e52bb (patch) | |
| tree | 74ce9d579586d56f8a4fe538cae4f235595c840d /src/nvim/window.c | |
| parent | 2e280dac7df504b0681043647c8cc02abcbcc686 (diff) | |
| parent | a16de288c3d3e033ab0cd60fec2a2d2042774685 (diff) | |
| download | rneovim-2ef72437fc2e20ed7eee2520d818d3039b8e52bb.tar.gz rneovim-2ef72437fc2e20ed7eee2520d818d3039b8e52bb.tar.bz2 rneovim-2ef72437fc2e20ed7eee2520d818d3039b8e52bb.zip | |
Merge #11594 from janlazo/vim-8.0.1767
vim-patch:8.0.1767,8.2.0030
Diffstat (limited to 'src/nvim/window.c')
| -rw-r--r-- | src/nvim/window.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/nvim/window.c b/src/nvim/window.c index 76fc36607c..af78c89618 100644 --- a/src/nvim/window.c +++ b/src/nvim/window.c @@ -6020,10 +6020,20 @@ file_name_in_line ( if (file_lnum != NULL) { char_u *p; + const char *line_english = " line "; + const char *line_transl = _(line_msg); // Get the number after the file name and a separator character. + // Also accept " line 999" with and without the same translation as + // used in last_set_msg(). p = ptr + len; - p = skipwhite(p); + if (STRNCMP(p, line_english, STRLEN(line_english)) == 0) { + p += STRLEN(line_english); + } else if (STRNCMP(p, line_transl, STRLEN(line_transl)) == 0) { + p += STRLEN(line_transl); + } else { + p = skipwhite(p); + } if (*p != NUL) { if (!isdigit(*p)) { p++; // skip the separator |