1
0
mirror of https://github.com/wting/autojump synced 2026-03-02 03:49:26 +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

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() {