Add ":profile dump"

Currently the logfile (":profile start {logfile}") only gets written when Vim
exits. This new command allows to dump the log immediately without exiting.
This commit is contained in:
Marco Hinz
2015-04-14 17:44:47 +02:00
parent 69085113b3
commit 588bf76650
2 changed files with 6 additions and 0 deletions

View File

@@ -773,6 +773,8 @@ void ex_profile(exarg_T *eap)
profile_set_wait(profile_add(profile_get_wait(), pause_time));
}
do_profiling = PROF_YES;
} else if (STRCMP(eap->arg, "dump") == 0) {
profile_dump();
} else {
/* The rest is similar to ":breakadd". */
ex_breakadd(eap);
@@ -821,6 +823,7 @@ static char *pexpand_cmds[] = {
"continue",
"func",
"file",
"dump",
NULL
};