mirror of
https://github.com/vim-airline/vim-airline.git
synced 2024-11-24 14:10:21 +08:00
16 lines
297 B
VimL
16 lines
297 B
VimL
" MIT License. Copyright (c) 2013 Bailey Ling.
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
function! airline#debug#profile()
|
|
profile start airline-profile.log
|
|
profile func *
|
|
profile file *
|
|
split
|
|
for i in range(1, 1000)
|
|
wincmd w
|
|
redrawstatus
|
|
endfor
|
|
profile pause
|
|
noautocmd qall!
|
|
endfunction
|