diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-08-18 08:24:49 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-18 08:24:49 +0800 |
commit | 46163ddf5d718c4e749df78ef8e54d0715de6cb9 (patch) | |
tree | 382083e5f760e2bc9d2595d56925009b6260b79a /src/nvim/help.c | |
parent | 1d6c4ad073ecff42a4421c7b30b42937809bd248 (diff) | |
download | rneovim-46163ddf5d718c4e749df78ef8e54d0715de6cb9.tar.gz rneovim-46163ddf5d718c4e749df78ef8e54d0715de6cb9.tar.bz2 rneovim-46163ddf5d718c4e749df78ef8e54d0715de6cb9.zip |
vim-patch:9.0.1730: passing multiple patterns to runtime not working (#24771)
Problem: passing multiple patterns to runtime not working
Solution: prepend prefix to each argument separately
closes: vim/vim#12617
https://github.com/vim/vim/commit/008c91537b55835aa91cd8fbe1a139256581da31
Diffstat (limited to 'src/nvim/help.c')
-rw-r--r-- | src/nvim/help.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/help.c b/src/nvim/help.c index 4602ddd40e..dc384e3d14 100644 --- a/src/nvim/help.c +++ b/src/nvim/help.c @@ -1188,7 +1188,7 @@ void ex_helptags(exarg_T *eap) } if (strcmp(eap->arg, "ALL") == 0) { - do_in_path(p_rtp, "doc", DIP_ALL + DIP_DIR, helptags_cb, &add_help_tags); + do_in_path(p_rtp, "", "doc", DIP_ALL + DIP_DIR, helptags_cb, &add_help_tags); } else { ExpandInit(&xpc); xpc.xp_context = EXPAND_DIRECTORIES; |