Lines Matching refs:time
308 `:packloadall` a second time will have no effect.
432 nested as deep as the number of files that can be opened at one time (about
542 for a long time, when making it possible to add a comment halfway a
984 Profiling means that Vim measures the time that is spent on executing
988 You can also use the |reltime()| function to measure time. This only requires
1045 2 Called 1 time ~
1046 3 Total time: 0.155251 ~
1047 4 Self time: 0.002006 ~
1056 The header (lines 1-4) gives the time for the whole function. The "Total"
1057 time is the time passed while the function was executing. The "Self" time is
1058 the "Total" time reduced by time spent in:
1064 Lines 7-11 show the time spent in each executed line. Lines that are not
1068 "for" command in line 7 is executed one more time as the following lines.
1071 The time Vim spends waiting for user input isn't counted at all. Thus how
1074 Profiling should give a good indication of where time is spent, but keep in
1077 - The accuracy of the time measured depends on the gettimeofday() system
1081 - Real elapsed time is measured, if other processes are busy they may cause
1085 - If you have several commands in one line you only get one time. Split the
1086 line to see the time for the individual commands.
1088 - The time of the lines added up is mostly less than the time of the whole
1100 - The "self" time is wrong when a function is used recursively.