Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: other things i miss in zsh ...
- X-seq: zsh-users 13786
- From: Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx>
- To: zsh-users <zsh-users@xxxxxxxxxx>
- Subject: Re: other things i miss in zsh ...
- Date: Fri, 30 Jan 2009 08:42:05 -0800
- In-reply-to: <20090130085140.GC9835@xxxxxxxxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
- References: <20090130085140.GC9835@xxxxxxxxxxxx>
On Jan 30, 9:51am, Marc Chantreux wrote:
}
} - a strict mode that failed to use undeclared (or unexported) variables
} - a warning mode that produces an error message when undefined variable is
} used
Please experiment with some combination of
setopt no_unset
setopt warn_create_global
} - a mechanism to avoid command completions for some patterns: i would
} like every *private/* functions to be invisible for completion.
Look at the ignored-patterns style. I'm not sure exactly what you mean
by "every *private/* functions" but perhaps something like this:
zstyle ':completion:*:-command-:*' ignored-patterns \
${(M)^fpath:#*private}/*(.N:t)
Messages sorted by:
Reverse Date,
Date,
Thread,
Author