How do I list loaded plugins in Vim?

VimPlugins

Vim Problem Overview


Does anybody know of a way to list up the "loaded plugins" in Vim? I know I should be keeping track of this kind of stuff myself but it would always be nice to be able to check the current status.

Vim Solutions


Solution 1 - Vim

Not a VIM user myself, so forgive me if this is totally offbase. But according to what I gather from the following VIM Tips site:

" where was an option set  
:scriptnames            : list all plugins, _vimrcs loaded (super)  
:verbose set history?   : reveals value of history and where set  
:function               : list functions  
:func SearchCompl       : List particular function

Solution 2 - Vim

The problem with :scriptnames, :commands, :functions, and similar Vim commands, is that they display information in a large slab of text, which is very hard to visually parse.

To get around this, I wrote [Headlights] 1, a plugin that adds a menu to Vim showing all loaded plugins, TextMate style. The added benefit is that it shows plugin commands, mappings, files, and other bits and pieces.

Solution 3 - Vim

:set runtimepath?

This lists the path of all plugins loaded when a file is opened with Vim.

Solution 4 - Vim

If you use Vundle, :PluginList.

Solution 5 - Vim

:help local-additions

Lists local plugins added.

Solution 6 - Vim

If you use vim-plug (Plug), " A minimalist Vim plugin manager.":

:PlugStatus

That will not only list your plugins but check their status.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionDaisuke ShimamotoView Question on Stackoverflow
Solution 1 - VimRob RolnickView Answer on Stackoverflow
Solution 2 - VimMohammedView Answer on Stackoverflow
Solution 3 - VimakashbwView Answer on Stackoverflow
Solution 4 - VimMatt FlorenceView Answer on Stackoverflow
Solution 5 - VimpenkwinView Answer on Stackoverflow
Solution 6 - VimarisView Answer on Stackoverflow