1- *repeat.txt* For Vim version 7.4. Last change: 2016 Mar 07
1+ *repeat.txt* For Vim version 7.4. Last change: 2016 Mar 09
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -441,24 +441,24 @@ The directory name "foo" is arbitrary, you can pick anything you like.
441441
442442You would now have these files under ~/.vim:
443443 pack/foo/README.txt
444- pack/foo/ever /foobar/plugin/foo.vim
445- pack/foo/ever /foobar/syntax/some.vim
444+ pack/foo/start /foobar/plugin/foo.vim
445+ pack/foo/start /foobar/syntax/some.vim
446446 pack/foo/opt/foodebug/plugin/debugger.vim
447447
448448When Vim starts up, after processing your .vimrc, it scans all directories in
449- 'packpath' for plugins under the "pack/*/ever " directory and loads them. The
449+ 'packpath' for plugins under the "pack/*/start " directory and loads them. The
450450directory is added to 'runtimepath' .
451451
452- In the example Vim will find "pack/foo/ever /foobar/plugin/foo.vim" and adds
453- "~/.vim/pack/foo/ever /foobar" to 'runtimepath' .
452+ In the example Vim will find "pack/foo/start /foobar/plugin/foo.vim" and adds
453+ "~/.vim/pack/foo/start /foobar" to 'runtimepath' .
454454
455455If the "foobar" plugin kicks in and sets the 'filetype' to "some", Vim will
456456find the syntax/some.vim file, because its directory is in 'runtimepath' .
457457
458458Vim will also load ftdetect files, if there are any.
459459
460460Note that the files under "pack/foo/opt" or not loaded automatically, only the
461- ones under "pack/foo/ever ". See | pack-add | below for how the "opt" directory
461+ ones under "pack/foo/start ". See | pack-add | below for how the "opt" directory
462462is used.
463463
464464Loading packages will not happen if loading plugins is disabled, see
@@ -469,13 +469,13 @@ Using a single plugin and loading it automatically ~
469469
470470If you don't have a package but a single plugin, you need to create the extra
471471directory level:
472- % mkdir -p ~/.vim/pack/foo/ever /foobar
473- % cd ~/.vim/pack/foo/ever /foobar
472+ % mkdir -p ~/.vim/pack/foo/start /foobar
473+ % cd ~/.vim/pack/foo/start /foobar
474474 % unzip /tmp/someplugin.zip
475475
476476You would now have these files:
477- pack/foo/ever /foobar/plugin/foo.vim
478- pack/foo/ever /foobar/syntax/some.vim
477+ pack/foo/start /foobar/plugin/foo.vim
478+ pack/foo/start /foobar/syntax/some.vim
479479
480480From here it works like above.
481481
0 commit comments