public
Description: Bits and bobs of zsh hacking.
Homepage:
Clone URL: git://github.com/nickstenning/zsh.git
zsh /
name age message
file README.markdown Loading commit data...
directory completions/
directory funcs/
README.markdown

This is a small collection of zsh completions and helper functions. At the moment you can blame me for anything in funcs/ but can only blame me for the _gibak completion in completions. Others may be due credit in places -- I apologise in advance if I've not mentioned people whose code I've unashamedly cribbed, and will fix it pronto if notified.

I use these by putting the following lines in my ~/.zshenv

# Load functions and completions.
fpath=( ~/code/zsh/funcs ~/code/zsh/completions $fpath )

# Autoload all funcs with exec bit set.
for func in $^fpath/*(-N.x:t); autoload $func

You could equally well put that in your .zshrc, but then other scripts wouldn't have access to the functions you've written.

-N, 2008-04-04