mirror of
https://github.com/neovim/neovim.git
synced 2025-11-24 19:20:39 +00:00
vim-patch:7.4.423
Problem: expand("$shell") does not work as documented.
Solution: Do not escape the $ when expanding environment variables.
https://code.google.com/p/vim/source/detail?r=v7-4-423
This commit is contained in:
@@ -1080,7 +1080,7 @@ gen_expand_wildcards (
|
||||
free(p);
|
||||
ga_clear_strings(&ga);
|
||||
i = mch_expand_wildcards(num_pat, pat, num_file, file,
|
||||
flags);
|
||||
flags | EW_KEEPDOLLAR);
|
||||
recursive = FALSE;
|
||||
return i;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user