brew install autojump
配置.zshrc
plugins=(autojump)
[[ -s $(brew --prefix)/etc/profile.d/autojump.sh ]] && . $(brew --prefix)/etc/profile.d/autojump.sh
执行source .zshrc
这样当你通过cd 到某个目录之后,autojump会自动记录下来
比如
cd work/tip
然后执行 j
就会出现
这时如果执行 j tip
会自动转到tip 目录下