1
0
mirror of https://github.com/wting/autojump synced 2024-09-28 22:10:45 +00:00

Merge pull request #99 from wting/zsh-fix_install_fpath

zsh: install fix hardcoded fpath
This commit is contained in:
Joel Schaerer 2012-02-08 02:46:15 -08:00
commit 2b7fd39870

View File

@ -31,7 +31,7 @@ fi
# set paths if necessary for local installations
if [[ -d ~/.autojump/ ]]; then
path=(~/.autojump/bin $path)
fpath=(/home/ting/.autojump/functions/ $fpath)
fpath=(~/.autojump/functions/ $fpath)
fi
function autojump_preexec() {