zsh-users
 help / color / mirror / code / Atom feed
From: Peter Stephenson <pws@pwstephenson.fsnet.co.uk>
To: zsh-users@sunsite.auc.dk
Subject: Re: Prompt expansion, multi-job for
Date: Thu, 06 Jan 2000 20:18:56 +0000	[thread overview]
Message-ID: <E126JL7-0003ih-00.2000-01-06-20-16-58@mail3.svr.pol.co.uk> (raw)
In-Reply-To: "Andre Pang"'s message of "Thu, 06 Jan 2000 19:44:32 +1100." <20000106194432.A488@bozar.ihug.com.au>

Andre Pang wrote:
> Hiya guys,
> 
>     I've got two completely separate questions about zsh.
> 
>     1) Let's say I'm in the /usr/local/src path at the moment.  Normally, if
> you use the %~ prompt expansion, it will expand to /usr/local/src - no
> surprises there.  What I'd like to do is trim each path element to one
> character unless it's the last path element, in which case it should be
> displayed to a maximum of, say, 15 characters.  eg, /usr/local/src should be
> displayed as "/u/l/src", /usr/local/src/linux would be displayed as
> "/u/l/s/linux", and /usr/local/src/linux-2.2.14+reiserfs+raid+ide might be
> displayed as "/u/l/s/linux-2.2.14...".  Is this possible with the current
> prompt expansion codes, or will I have to write up a function to do it, if
> it's possible to do at all?

Without ~ backsubstitution (i.e. full paths with no insertion of ~'s), you
can do it with the latest code as follows --- it won't work even with
3.1.6, because of the use of backreferences, as you've already discovered,
so you'll need to get zsh-3.1.6-dev-14 from the development directory on
the standard archives (if they're up to date).

setopt extendedglob promptsubst
PS1='${${PWD:h}//(#b)(\\/[^\\/])[^\\/]#/$match[1]}${${PWD:t}:+/}%15>...>${PWD:t}'

I'll explain it if you like, but that would take a good deal longer than
inventing it.  I can't think of a way of getting the ~'s back just using
parameter code, sorry (anyone else?).  If you can live with just $HOME put
back, you can replace PWD both times with ${PWD/$HOME/~}.

-- 
Peter Stephenson <pws@pwstephenson.fsnet.co.uk>


  parent reply	other threads:[~2000-01-06 20:17 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2000-01-06  8:44 Andre Pang
2000-01-06 12:03 ` Oliver Kiddle
2000-01-06 14:19   ` Thomas Köhler
2000-01-06 15:21     ` Oliver Kiddle
     [not found]       ` <14452.47479.5744.410474@gargle.gargle.HOWL>
2000-01-06 17:47         ` Oliver Kiddle
2000-01-09  0:59       ` Bart Schaefer
2000-01-06 14:54   ` Andre Pang
2000-01-06 12:44 ` Andrej Borsenkow
2000-01-06 14:46   ` Andre Pang
2000-01-06 20:18 ` Peter Stephenson [this message]
2000-01-06 11:41 Sven Wischnowsky

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=E126JL7-0003ih-00.2000-01-06-20-16-58@mail3.svr.pol.co.uk \
    --to=pws@pwstephenson.fsnet.co.uk \
    --cc=zsh-users@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).