diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-01-26 12:17:51 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-26 12:17:51 +0800 |
commit | a0a112515923206b640f0056a8282386b5514978 (patch) | |
tree | f25bc50ff763a3d31cbd43a528b1e391720ac136 /src/nvim/path.c | |
parent | 5ac34cf55db2b00c044fa95f75766dd89dd36ba9 (diff) | |
parent | 62f09017e09b7dc7bc837b0b13d9f1598685be46 (diff) | |
download | rneovim-a0a112515923206b640f0056a8282386b5514978.tar.gz rneovim-a0a112515923206b640f0056a8282386b5514978.tar.bz2 rneovim-a0a112515923206b640f0056a8282386b5514978.zip |
Merge pull request #22002 from zeertzjq/vim-9.0.1227
vim-patch:9.0.{1227,1231,1238,1242}: cmdline completion for :runtime
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 513f366a27..e4c2253357 100644 --- a/src/nvim/path.c +++ b/src/nvim/path.c @@ -1138,7 +1138,7 @@ static int expand_in_path(garray_T *const gap, char *const pattern, const int fl if (flags & EW_ADDSLASH) { glob_flags |= WILD_ADD_SLASH; } - globpath(paths, pattern, gap, glob_flags); + globpath(paths, pattern, gap, glob_flags, false); xfree(paths); return gap->ga_len; |