คุณสามารถใช้กลไกการสร้างโปรไฟล์ของตัวเองเป็นกลุ่ม:
vim --cmd 'profile start profile.log' \
--cmd 'profile func *' \
--cmd 'profile file *' \
-c 'profdel func *' \
-c 'profdel file *' \
-c 'qa!'
หลังจากเรียกใช้งานข้างต้นคุณจะพบไฟล์ชื่อ profile.log ในไดเร็กทอรีปัจจุบันพร้อมข้อมูลที่จำเป็นทั้งหมด หากต้องการรับตารางข้อมูลต่อสคริปต์ที่คล้ายกับที่มีอยู่แล้วต่อฟังก์ชันหนึ่งให้ใช้ (หลังจากเปิดไฟล์นี้ในกลุ่ม):
" 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
คำสั่งในตัวได้ตลอดเวลาหากจำนวนสคริปต์มากเกินไป