0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

patch 8.0.1231: expanding file name drops dash

Problem:    Expanding file name drops dash. (stucki)
Solution:   Use the right position. (Christian Brabandt, closes #2184)
This commit is contained in:
Bram Moolenaar
2017-10-28 17:53:04 +02:00
parent ce15775026
commit c312b8b87a
3 changed files with 29 additions and 1 deletions

View File

@@ -10715,9 +10715,12 @@ eval_vars(
if (*s == '<') /* "#<99" uses v:oldfiles */ if (*s == '<') /* "#<99" uses v:oldfiles */
++s; ++s;
i = (int)getdigits(&s); i = (int)getdigits(&s);
if (s == src + 2 && src[1] == '-')
/* just a minus sign, don't skip over it */
s--;
*usedlen = (int)(s - src); /* length of what we expand */ *usedlen = (int)(s - src); /* length of what we expand */
if (src[1] == '<') if (src[1] == '<' && i != 0)
{ {
if (*usedlen < 2) if (*usedlen < 2)
{ {
@@ -10740,6 +10743,8 @@ eval_vars(
} }
else else
{ {
if (i == 0 && src[1] == '<' && *usedlen > 1)
*usedlen = 1;
buf = buflist_findnr(i); buf = buflist_findnr(i);
if (buf == NULL) if (buf == NULL)
{ {

View File

@@ -365,6 +365,27 @@ func Test_cmdline_complete_user_cmd()
delcommand Foo delcommand Foo
endfunc endfunc
func Test_cmdline_write_alternatefile()
new
call setline('.', ['one', 'two'])
f foo.txt
new
f #-A
call assert_equal('foo.txt-A', expand('%'))
f #<-B.txt
call assert_equal('foo-B.txt', expand('%'))
f %<
call assert_equal('foo-B', expand('%'))
new
call assert_fails('f #<', 'E95')
bw!
f foo-B.txt
f %<-A
call assert_equal('foo-B-A', expand('%'))
bw!
bw!
endfunc
" using a leading backslash here " using a leading backslash here
set cpo+=C set cpo+=C

View File

@@ -761,6 +761,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
1231,
/**/ /**/
1230, 1230,
/**/ /**/