view .shell.d/10.functionpath.zsh @ 293:4e25b698e3e3

_hg: symlink as _mercurial as well to fix weird behavior on Ubuntu
author Augie Fackler <durin42@gmail.com>
date Mon, 30 Jan 2012 12:56:59 -0600
parents 426917c07eb1
children
line wrap: on
line source

fpath=(~/.zfun $fpath)
autoload -U ~/.zfun/*(:t)

function af_reloadfuncs()
{
  local f
  f=(~/.zfun/*(.))
  for comp in $f ; do
    unfunction $f:t 2> /dev/null
    autoload -U $f:t
  done
}