Vim Tips Wiki
No edit summary
m (use help template)
Line 30: Line 30:
 
# plugins
 
# plugins
   
  +
{{help|startup}}
[http://vimplugin.sf.net/cgi-bin/help?tag={{urlencode:startup}} :help startup]
 
 
   
 
}}
 
}}

Revision as of 13:34, 5 June 2007

Previous TipNext Tip

Tip: #515 - List loaded scripts

Created: July 23, 2003 0:19 Complexity: intermediate Author: Yakov Lerner Version: 6.0 Karma: 25/13 Imported from: Tip#515

To see filenames of all scripts that vim loaded, including those loaded implicitly at startup:

:scriptnames 

This does not show names of 'would-be scripts' -- that is, scripts that vim tried to open, did not find and was silent about it.

To see the 'would-be' scripts -- that is, scripts that vim tried to open, did not find and was silent about it -- add '-V' option when starting vim:

vim -V 

Also:

vim --version # shows system-dependent location of rc-files 
              # but does not show location of system/personal 
              # plugins 
:help startup

Comments