mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-27 04:40:59 +01:00
33057: %e in prompts shows evaluation / execution depth
This commit is contained in:
parent
40d559d880
commit
711e1427b5
3 changed files with 24 additions and 0 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2014-08-29 Peter Stephenson <p.stephenson@samsung.com>
|
||||
|
||||
* 33057: Doc/Zsh/prompt.yo, Src/prompt.c: %e in prompts shows
|
||||
evaluation / execution depth.
|
||||
|
||||
2014-08-28 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
||||
|
||||
* 33062: Etc/zsh-development-guide: update note on use of
|
||||
|
|
|
|||
|
|
@ -108,6 +108,12 @@ the full path;
|
|||
ifzman(see em(Dynamic) and em(Static named directories) in zmanref(zshexpn))\
|
||||
ifnzman(noderef(Filename Expansion)).
|
||||
)
|
||||
item(tt(%e))(
|
||||
Evaluation depth of the current sourced file, shell function, or tt(eval).
|
||||
This is incremented or decremented every time the value of tt(%N) is
|
||||
set or reverted to a previous value, respectively. This is most useful
|
||||
for debugging as part of tt($PS4).
|
||||
)
|
||||
xitem(tt(%h))
|
||||
item(tt(%!))(
|
||||
Current history event number.
|
||||
|
|
|
|||
13
Src/prompt.c
13
Src/prompt.c
|
|
@ -786,6 +786,19 @@ putpromptchar(int doprint, int endchar, unsigned int *txtchangep)
|
|||
if(bv->Rstring)
|
||||
stradd(bv->Rstring);
|
||||
break;
|
||||
case 'e':
|
||||
{
|
||||
int depth = 0;
|
||||
Funcstack fsptr = funcstack;
|
||||
while (fsptr) {
|
||||
depth++;
|
||||
fsptr = fsptr->prev;
|
||||
}
|
||||
addbufspc(DIGBUFSIZE);
|
||||
sprintf(bv->bp, "%d", depth);
|
||||
bv->bp += strlen(bv->bp);
|
||||
break;
|
||||
}
|
||||
case 'I':
|
||||
if (funcstack && funcstack->tp != FS_SOURCE &&
|
||||
!IN_EVAL_TRAP()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue