mirror of
https://github.com/neovim/neovim.git
synced 2025-11-17 15:51:32 +00:00
vim-patch:8.2.3530: ":buf \{a}" fails while ":edit \{a}" works
Problem: ":buf \{a}" fails while ":edit \{a}" works.
Solution: Unescape "\{". (closes vim/vim#8917)
21c1a0c2f1
This commit is contained in:
@@ -285,7 +285,7 @@ static char *ses_escape_fname(char *name, unsigned *flagp)
|
||||
}
|
||||
|
||||
// Escape special characters.
|
||||
p = vim_strsave_fnameescape(sname, false);
|
||||
p = vim_strsave_fnameescape(sname, VSE_NONE);
|
||||
xfree(sname);
|
||||
return p;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user