zsh-workers
 help / color / mirror / code / Atom feed
From: Peter Stephenson <pws@ibmth.df.unipi.it>
To: zsh-workers@sunsite.auc.dk (Zsh hackers list)
Subject: PATCH: pws-24: prompt escapes for script/function and lineno
Date: Mon, 28 Jun 1999 11:00:37 +0200	[thread overview]
Message-ID: <9906280900.AA24445@ibmth.df.unipi.it> (raw)

This implements the prompt escape %N for the nearest enclosing
script/sourced file/function, and %i for the corresponding line number
(sorry, %l, %L and %n were taken).  The main reason for having these is
that the PROMPT_SUBST option is set by emulation, so an `emulate zsh' will
turn it off, hence sticking $0 and $LINENO in PS4 is only partially
successful, and expecting functions to set it seems unfair.  Another reason
is that, because of FUNCTION_ARGZERO, it's not always possible to get the
name of whatever's being executed as the internal scriptname variable isn't
directly accessible.  I hope this seems reasonable.  People used to
complain when you added new % sequences, but with the size of the code
nowadays maybe they don't.

Maybe we should make '+%N:%i:%_> ' or something such the default PS4?

--- Doc/Zsh/params.yo.lns	Wed Jun 23 17:38:34 1999
+++ Doc/Zsh/params.yo	Mon Jun 28 10:57:32 1999
@@ -299,8 +299,11 @@
 )
 vindex(LINENO)
 item(tt(LINENO) <S>)(
-The line number of the current line within the current script
-being executed.
+The line number of the current line within the current script, sourced
+file, or shell function being executed, whichever was started most
+recently.  Note that in the case of shell functions the line
+number refers to the function as it appeared in the original definition,
+not necesarily as displayed by the tt(functions) builtin.
 )
 vindex(LOGNAME)
 item(tt(LOGNAME))(
--- Doc/Zsh/prompt.yo.lns	Mon Jun 28 10:26:15 1999
+++ Doc/Zsh/prompt.yo	Mon Jun 28 10:30:26 1999
@@ -95,6 +95,16 @@
 item(tt(%n))(
 tt($USERNAME).
 )
+item(tt(%N))(
+The name of the script, sourced file, or shell function that zsh is
+currently executing, whichever was started most recently.  If there is
+none, this is equivalent to the parameter tt($0).
+)
+item(tt(%i))(
+The line number currently being executed in the script, sourced file, or
+shell function given by tt(%N).  This is most useful for debugging as part
+of tt($PS4).
+)
 item(tt(%w))(
 The date in var(day)tt(-)var(dd) format.
 )
--- Src/prompt.c.lns	Mon Apr 26 09:23:04 1999
+++ Src/prompt.c	Mon Jun 28 10:21:14 1999
@@ -531,6 +531,14 @@
 		if(Rstring)
 		    stradd(Rstring);
 		break;
+	    case 'i':
+		addbufspc(DIGBUFSIZE);
+		sprintf(bp, "%ld", (long)lineno);
+		bp += strlen(bp);
+		break;
+	    case 'N':
+		stradd(scriptname ? scriptname : argzero);
+		break;
 	    case '\0':
 		return 0;
 	    case Meta:

-- 
Peter Stephenson <pws@ibmth.df.unipi.it>       Tel: +39 050 844536
WWW:  http://www.ifh.de/~pws/
Dipartimento di Fisica, Via Buonarroti 2, 56127 Pisa, Italy


             reply	other threads:[~1999-06-28  9:29 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1999-06-28  9:00 Peter Stephenson [this message]
1999-06-28  9:32 Sven Wischnowsky
1999-06-28 13:08 ` Andrej Borsenkow
1999-06-28 17:05   ` Peter Stephenson
1999-06-29 15:31     ` Bart Schaefer
1999-06-29 15:40       ` Andrej Borsenkow
1999-07-02 13:05 Sven Wischnowsky
1999-07-02 15:54 ` Peter Stephenson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=9906280900.AA24445@ibmth.df.unipi.it \
    --to=pws@ibmth.df.unipi.it \
    --cc=zsh-workers@sunsite.auc.dk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).