Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: (No) Exported Functions
- X-seq: zsh-users 7471
- From: Peter Stephenson <pws@xxxxxxx>
- To: zsh-users@xxxxxxxxxx
- Subject: Re: (No) Exported Functions
- Date: Tue, 25 May 2004 12:18:53 +0100
- In-reply-to: "Suresh.Kannan@xxxxxxx"'s message of "Tue, 25 May 2004 11:34:57 BST." <C211FFEFFD465841BF7A8A0989E9C0BD03FB044D@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
Suresh.Kannan@xxxxxxx wrote:
> Hi,
>
> I've read the manuals and googled and as far as I can see, zsh doesn't
> appear to support exported functions. Is this true?
That's correct.
The right way to do this is:
1. Create a directory with your functions in them, each with the same name as
the function. Call this ~/zsh_functions, for example. (The standard
zsh format is for only the body of the function to be in the file,
but if it's all surrounded by funcname() { ... } it will still work.)
2. In your ~/.zshenv, add
fpath=(~/zsh_functions $fpath)
autoload ~/zsh_functions/*(:t)
--
Peter Stephenson <pws@xxxxxxx> Software Engineer
CSR Ltd., Science Park, Milton Road,
Cambridge, CB4 0WH, UK Tel: +44 (0)1223 692070
**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
This footnote also confirms that this email message has been swept by
MIMEsweeper for the presence of computer viruses.
www.mimesweeper.com
**********************************************************************
Messages sorted by:
Reverse Date,
Date,
Thread,
Author