zsh-users
 help / color / mirror / code / Atom feed
From: Peter Stephenson <pws@ibmth.df.unipi.it>
To: "G. Khalsa" <gkhalsa@jeppesen.com>
Cc: zsh-users@math.gatech.edu
Subject: Re: Completion of cd type functions?
Date: Thu, 29 Oct 1998 14:23:38 +0100	[thread overview]
Message-ID: <9810291323.AA28218@ibmth.df.unipi.it> (raw)
In-Reply-To: ""G. Khalsa""'s message of "Thu, 29 Oct 1998 13:18:01 NFT." <9810299096.AA909663631@smtp-gw.jeppesen.com>

"G. Khalsa" wrote:
> alias cxxsrc 'cd ~/development/source/cxx/\!*'
> complete cxxsrc "p@1@D:$HOME/development/source/cxx@"
> 
> This way I can just type cxxsrc from anywhere and have it complete only with 
> directories in $HOME/development/source/cxx.
> 
> Can I do this somehow in zsh (simply)?

In zsh 3.1, you need

cxxsrc() { cd ~/development/source/cxx/$1; }
compctl -W ~/development/source/cxx -/ cxxsrc

In older versions it's harder, particularly to get subdirectories.
You need to write a completion function which sticks the appropriate
part in front of the word so far, lists the directories that are
there, then deletes the front part of the word again and returns the
result; plus it still doesn't work as a path since in lists you get
the whole word, not just the last part of the path.

> Unfortunately the lete2ctl script fails when I try to run it so I can't get a
> ll 
> my nifty tcsh completions translated automatically.

The supplied version doesn't go down too well with recent versions of
perl.  There's a new version of lete2ctl for 3.1, which should appear
soon.  It doesn't handle the 'D' code since that doesn't appear in any
of the tcsh manuals I have access to.

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


  reply	other threads:[~1998-10-29 13:42 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1998-10-29 20:18 G. Khalsa
1998-10-29 13:23 ` Peter Stephenson [this message]
1998-10-29 15:29   ` Michael Barnes

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=9810291323.AA28218@ibmth.df.unipi.it \
    --to=pws@ibmth.df.unipi.it \
    --cc=gkhalsa@jeppesen.com \
    --cc=zsh-users@math.gatech.edu \
    /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).