Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: other things i miss in zsh ...



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