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: Re: User installation script for new completion
Date: Mon, 03 May 1999 12:00:42 +0200	[thread overview]
Message-ID: <9905031000.AA21091@ibmth.df.unipi.it> (raw)
In-Reply-To: "Bruce Stephens"'s message of "02 May 1999 15:56:38 DFT." <m3so9f5xll.fsf@cenderis.demon.co.uk>

Bruce Stephens wrote:
> > +#  - Probably should allow a set of directories to be added to $fpath,
> > +#    like Core, Base, etc.
> 
> Yes, probably.  Couldn't compinit do this, though?  i.e., it could
> look at the directory it's in for subdirectories, and add them?

Not quite what you suggested, but it should simplify installation when I
modify compinstall:  compinit looks at how many completion files it has
found, and if there are fewer than twenty (that's about the number in the
Core directory) it adds the path to itself to fpath.  I haven't quite
worked out on what occasions it should look for subdirectories.

This fails when functionargzero is not set.  Great.  Any better
suggestions?

--- Completion/Core/compinit.old	Mon May  3 09:54:38 1999
+++ Completion/Core/compinit	Mon May  3 11:54:13 1999
@@ -272,6 +272,11 @@
 
 typeset -U _i_files
 _i_files=( ${^~fpath}/_(|*[^~])(N:t) )
+if [[ $#_i_files -lt 20 && $0 = */* ]]; then
+  # Assume that we need to add the compinit directory to fpath.
+  fpath=(${0:h} $fpath)
+  _i_files=( ${^~fpath}/_(|*[^~])(N:t) )
+fi
 _i_initname=$0
 _i_done=''
 
-- 
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-05-03 10:29 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1999-05-02 14:03 Peter Stephenson
1999-05-02 14:56 ` Bruce Stephens
1999-05-03 10:00   ` Peter Stephenson [this message]
1999-05-03 10:46     ` Bart Schaefer
1999-05-03 11:19       ` Peter Stephenson
1999-05-03 16:12         ` Bart Schaefer
1999-05-02 23:52 ` Bart Schaefer
1999-05-03  0:34   ` Bart Schaefer
1999-05-03  8:11     ` 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=9905031000.AA21091@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).