问题描述
有时我会在vimrc中尝试自定义/命令.一切看起来都是正确的,但这根本行不通.
Sometimes I try a customization/command in my vimrc. Everything seens to be correct, but it just doesn't work.
很难知道vim启动时发生了什么,知道哪个命令是否失败,因此调试在vimrc中可能引起问题的内容真的很困难.这是一种尝试错误的方法,非常耗时,而且实际上是PITA.例如,我遇到问题,只是对如何发现问题一无所知.
It's difficult to know what's happening when vim starts, and know which command failed or not, so it's really difficult to debug what can be causing a problem in my vimrc. It's a trial-error approach, which is time consuming and really a PITA. For example, I'm having problems with snipmate plugin in some files and just don't have a clue on how to discover the problem.
vim启动时是否有一个运行时日志",告诉它执行了哪些命令,哪些失败了?这将对我有很大帮助.
Is there a "runtime log" when vim starts, telling which commands it executed, which ones failed and such? This would help me a lot.
推荐答案
使用-V [N]选项运行vim会产生大量的运行时日志,这里N是调试级别.
running vim with the -V[N] option will do a pretty hefty runtime log, here N is the debug level.
vim -V9myVim.log
将在当前目录中使用文件名myVim.log
would create a log of debug level 9 in the current directory with the filename myVim.log
这篇关于是否有"vim运行时日志"?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!