tags:

views:

1303

answers:

2

Hi,

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.

Thanks

+11  A: 

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

Rob Rolnick
WTG for looking it up on VIM Tips even though you don't use VIM yourself!
Nathan Fellman
A: 

That's exactly what I wanted.

Thanks!

Daisuke Shimamoto