diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-04-30 18:54:39 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-04-30 18:54:39 +0000 |
commit | c9b4b05b3544b434730eb218e848a1a441d5ffb2 (patch) | |
tree | c1550ddf398d2030ed25ee98e8342fcb41ac1c87 /runtime/doc/repeat.txt | |
parent | aa35dd1667c5903cdcc32ebe10f27bc6683c68a1 (diff) | |
download | vim-git-c9b4b05b3544b434730eb218e848a1a441d5ffb2.tar.gz |
updated for version 7.0gv7.0g
Diffstat (limited to 'runtime/doc/repeat.txt')
-rw-r--r-- | runtime/doc/repeat.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/runtime/doc/repeat.txt b/runtime/doc/repeat.txt index 7c3ad67c1..6b9a55b88 100644 --- a/runtime/doc/repeat.txt +++ b/runtime/doc/repeat.txt @@ -1,4 +1,4 @@ -*repeat.txt* For Vim version 7.0f. Last change: 2006 Apr 24 +*repeat.txt* For Vim version 7.0g. Last change: 2006 Apr 30 VIM REFERENCE MANUAL by Bram Moolenaar @@ -606,11 +606,11 @@ numbers prepended for the explanation: 4 Self time: 0.002006 ~ 5 ~ 6 count total (s) self (s) ~ - 7 9 0.000096 for i in range(8) ~ - 8 8 0.153655 0.000410 call Test3() ~ - 9 8 0.000070 endfor ~ - 10 " Ask a question ~ - 11 1 0.001341 echo input("give me an answer: ") ~ + 7 9 0.000096 for i in range(8) ~ + 8 8 0.153655 0.000410 call Test3() ~ + 9 8 0.000070 endfor ~ + 10 " Ask a question ~ + 11 1 0.001341 echo input("give me an answer: ") ~ The header (lines 1-4) gives the time for the whole function. The "Total" time is the time passed while the function was executing. The "Self" time is @@ -649,7 +649,7 @@ mind there are various things that may clobber the results: - Functions that are deleted before Vim exits will not produce profiling information. You can check the |v:profiling| variable if needed: > - :if !v:profiling + :if !v:profiling : delfunc MyFunc :endif < |