Vim Tips Wiki
(Move categories to tip template)
(Remove html character entities)
Line 19: Line 19:
 
==Comments==
 
==Comments==
 
While going through the help pages, I figured this feature is documented with the following example:
 
While going through the help pages, I figured this feature is documented with the following example:
:debug edit <file>
+
:debug edit <file>
   
 
This should let you debug autocommands that get triggered by loading a new buffer.
 
This should let you debug autocommands that get triggered by loading a new buffer.

Revision as of 05:22, 29 September 2008

Tip 202 Printable Monobook Previous Next

created January 21, 2002 · complexity advanced · author Hari Krishna Dara · version 6.0


Don't know how people debug autocommands, but I just found out that you can debug (at least) those that result due to window close by just doing a debug quit, i.e.,

:debug quit

Vim will let you step into the autocommands. Try it to believe.

Comments

While going through the help pages, I figured this feature is documented with the following example:

:debug edit <file>

This should let you debug autocommands that get triggered by loading a new buffer.


There's also the :verbose command, with which you can specify the verbosity level for one command only:

:9verbose edit somefile.txt.gz

The verbose levels are documented in :help 'verbose'. The 'verbose' option variable sets verbosity permamently, not just for one command only.