0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 7.4.1528

Problem:    Using "ever" for packages is confusing.
Solution:   Use "start", as it's related to startup.
This commit is contained in:
Bram Moolenaar
2016-03-09 22:19:26 +01:00
parent 562ca71428
commit af1a0e371e
3 changed files with 16 additions and 14 deletions

View File

@@ -3118,8 +3118,8 @@ add_pack_plugin(char_u *fname, void *cookie)
}
/* now we have:
* rtp/pack/name/ever/name
* p4 p3 p2 p1
* rtp/pack/name/start/name
* p4 p3 p2 p1
*
* find the part up to "pack" in 'runtimepath' */
c = *p4;
@@ -3195,7 +3195,7 @@ theend:
void
source_packages()
{
do_in_path(p_pp, (char_u *)"pack/*/ever/*", DIP_ALL + DIP_DIR,
do_in_path(p_pp, (char_u *)"pack/*/start/*", DIP_ALL + DIP_DIR,
add_pack_plugin, p_pp);
}