We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74b4147 commit df87157Copy full SHA for df87157
autoload/startuptime.vim
@@ -262,12 +262,12 @@ function! startuptime#ShowMoreInfo()
262
else
263
let l:item = b:item_map[l:line]
264
call add(l:info_lines, 'event: ' . l:item.event)
265
- call add(l:info_lines, 'clock: ' . string(l:item.clock))
266
for l:tfield in s:tfields
267
if has_key(l:item, l:tfield)
268
call add(l:info_lines, l:tfield . ': ' . string(l:item[l:tfield]))
269
endif
270
endfor
+ call add(l:info_lines, 'clock: ' . string(l:item.clock))
271
272
call add(l:info_lines, '* times are in milliseconds')
273
let l:echo_list = []
0 commit comments