Lines Matching refs:plugin
241 :runtime! plugin/**/*.vim
242 < This is what Vim uses to load the plugin files when
244 :runtime plugin/**/*.vim
253 :pa[ckadd][!] {name} Search for an optional plugin directory in 'packpath'
254 and source any plugin files found. The directory must
268 pack/*/opt/{name}/plugin/**/*.vim ~
270 below "plugin", just like with plugins in
278 When the optional ! is added no plugin files or
286 you will need to write `filetype plugin indent on`
298 directories are sourced. This allows for a plugin to
299 depend on something of another plugin, e.g. an
575 pack/foo/start/foobar/plugin/foo.vim
577 pack/foo/opt/foodebug/plugin/debugger.vim
584 In the example Vim will find "pack/foo/start/foobar/plugin/foo.vim" and adds
587 If the "foobar" plugin kicks in and sets the 'filetype' to "some", Vim will
608 Using a single plugin and loading it automatically ~
610 If you don't have a package but a single plugin, you need to create the extra
617 pack/foo/start/foobar/plugin/foo.vim
625 To load an optional plugin from a pack use the `:packadd` command: >
628 ~/.vim/pack/foo/opt/foodebug/plugin/debugger.vim and source it.
633 You can also load an optional plugin at startup, by putting this command in
636 The extra "!" is so that the plugin isn't loaded if Vim was started with
640 directory. You then need to load each plugin when you want to use it.
651 found. Unless you have more than one plugin for a file type and want to
680 start/foobar/plugin/foo.vim " always loaded, defines commands
681 start/foobar/plugin/bar.vim " always loaded, defines commands
685 opt/fooextra/plugin/extra.vim " optional plugin, defines commands
699 to load the optional plugin: >
703 the optional plugin is needed.
708 the command after changing the plugin help: >
719 pack/foo/start/one/plugin/one.vim >
721 < pack/foo/start/two/plugin/two.vim >
924 matches ".../plugin/explorer.vim", ".../plugin/iexplorer.vim", etc. >
926 matches ".../plugin/explorer.vim" and "explorer.vim" in any other directory.