Answers:
如果您使用的是Vim 7.2.269或更高版本,则可以使用--startuptime选项。
vim --startuptime vim.log
通过帮助(vim -h
):
--startuptime <file> Write startup timing messages to <file>
vim --startuptime /dev/stdout +qall
time vim +q
如果您只想计时整个vim的启动时间。
vim --startuptime /dev/stdout +qall
和之间有很大的区别vim --startuptime vim.log +qall; cat vim.log
。
您可以使用vim自己的分析机制:
vim --cmd 'profile start profile.log' \
--cmd 'profile func *' \
--cmd 'profile file *' \
-c 'profdel func *' \
-c 'profdel file *' \
-c 'qa!'
运行上述命令后,您将在当前目录中找到一个名为profile.log的文件,其中包含所有必需信息。要获得类似于已存在的按功能的按脚本信息表,请使用(在vim中打开此文件之后):
" Open profile.log file in vim first
let timings=[]
g/^SCRIPT/call add(timings, [getline('.')[len('SCRIPT '):], matchstr(getline(line('.')+1), '^Sourced \zs\d\+')]+map(getline(line('.')+2, line('.')+3), 'matchstr(v:val, ''\d\+\.\d\+$'')'))
enew
call setline('.', ['count total (s) self (s) script']+map(copy(timings), 'printf("%5u %9s %8s %s", v:val[1], v:val[2], v:val[3], v:val[0])'))
它不会排序,但是:sort
如果脚本数量太大,您可以始终使用内置命令。
dbext.vim
,这花费了三秒钟的时间github.com/johnsyweb/dotfiles/commit/09c3001
gvim --cmd 'profile start profile.log' --cmd 'profile func *' --cmd 'profile file *' -c 'profdel func *' -c 'profdel file *' -c 'qa!'
它确实在vim中创建了很多空文件。
我创建了这个 Github项目是为了更好地回答您的问题。基本上,它总结了每个插件的每个函数调用的时间,从原始vim配置文件输出来看,这不是很明显(但很重要)。支持Bash,Python,R,Ruby创建分析结果。
您将获得如下结果图:
连同这样的文本输出:
Generating vim startup profile...
Parsing vim startup profile...
Crunching data and generating profile plot ...
Your plugins startup profile graph is saved
as `profile.png` under current directory.
==========================================
Top 10 Plugins That Slows Down Vim Startup
==========================================
1 105.13 "vim-colorschemes"
2 42.661 "vim-easytags"
3 31.173 "vim-vendetta"
4 22.02 "syntastic"
5 13.362 "vim-online-thesaurus"
6 7.888 "vim-easymotion"
7 6.931 "vim-airline"
8 6.608 "YankRing.vim"
9 5.266 "nerdcommenter"
10 5.017 "delimitMate"
==========================================
Done!
!
在标记之前添加一个来添加图中的内容。
您可以vim -V
通过添加时间戳的实用程序运行,通过管道传递输出,并分析输出。此命令行执行此操作,例如:
vim -V 2>&1 | perl -MTime::HiRes=time -ne 'print time, ": ", $_' | tee vilog
您可能需要盲目输入:q以返回提示。之后,您应该vilog
在当前目录中的每行开头找到带有hires时间戳的文件。
如果可以做到一秒钟的粒度,则可以执行以下操作:
vim -V 2>&1 | perl -ne 'print time, ": ", $_' | tee vilog
基于@hyiltiz依赖于R的工作,我制作了探查器的Python版本,因为在R的系统上更经常使用它。
它也稍微容易扩展,因此具有以下特点:
输出类似于vim-plugins-profile提供的内容:
$ vim-profiler.py -p nvim
Running nvim to generate startup logs... done.
Loading and processing logs... done.
Plugin directory: /home/user/.config/nvim/plugged
=====================================
Top 10 plugins slowing nvim's startup
=====================================
1 3.326 vim-fugitive
2 2.936 tcomment_vim
3 2.315 vim-hybrid
4 1.751 lightline.vim
5 0.959 vim-sneak
6 0.943 supertab
7 0.542 vim-surround
8 0.536 fzf.vim
9 0.450 fzf
10 0.434 auto-pairs
=====================================
No plugin found
。
有一个插件可以配置vim的启动时间。
没有bash time
命令可以像这样使用:
time vim
编辑:不包括脚本启动时间。请使用@jamessan建议。