diff options
author | Florian Walch <florian@fwalch.com> | 2014-12-18 15:35:13 +0100 |
---|---|---|
committer | Florian Walch <florian@fwalch.com> | 2014-12-18 15:41:27 +0100 |
commit | c780075afad41fd4de30212845becdca83c4dd7c (patch) | |
tree | 1265077e1cfb6c3bb798be95d5b2319e72a0c81f /src/nvim/path.c | |
parent | 1eef5303514a8499fd376270bd89a40e2d3eafbb (diff) | |
download | rneovim-c780075afad41fd4de30212845becdca83c4dd7c.tar.gz rneovim-c780075afad41fd4de30212845becdca83c4dd7c.tar.bz2 rneovim-c780075afad41fd4de30212845becdca83c4dd7c.zip |
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
Diffstat (limited to 'src/nvim/path.c')
-rw-r--r-- | src/nvim/path.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/path.c b/src/nvim/path.c index e8d31f3f73..950cc5a83a 100644 --- a/src/nvim/path.c +++ b/src/nvim/path.c @@ -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; } |