We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
之前我们在终端目录跳转切换都是用cd,但是这个有一个缺点就是要具体输出前面的路径一点都不便捷。这里推荐两个比较智能的软件分别是autojump 和z。由于z体积比较小还有速率比较快,所以比较推荐大家使用z。
cd
autojump
z
地址:https://github.com/wting/autojump
Grab a copy of autojump:
git clone git://github.com/wting/autojump.git
Run the installation script and follow on screen instructions.
cd autojump ./install.py or ./uninstall.py
Homebrew is the recommended installation method for Mac OS X:
brew install autojump
MacPorts is also available:
port install autojump
Windows support is enabled by clink which should be installed prior to installing autojump.
要成功使用,必须要先cd目录,这样子才能生成相应的目录记录,这样子才能使用快捷跳转
地址:https://github.com/rupa/z
在.zshrc文件默认有一句plugins=(git),由于zsh默认带有 Z ,所以在这里把它添加进去就行,改为plugins=(git z)。
.zshrc
plugins=(git)
plugins=(git z)
在源码仓库里可以看到,Z 其实也就是一个 .sh 脚本,所以不管你用的是什么Terminal,只用按以下步骤就能马上使用 Z 。
将z.sh下载到本地目录 在根目录对应Terminal的文件(如果是默认的,一般是.bashrc)里加上source 和z.sh所在目录 之后重启Terminal就可以开始用了
source
The text was updated successfully, but these errors were encountered:
如果出现了zsh: command not found: j,请在.zshrc文件增加plugins=(autojump)
zsh: command not found: j
Sorry, something went wrong.
No branches or pull requests
之前我们在终端目录跳转切换都是用
cd
,但是这个有一个缺点就是要具体输出前面的路径一点都不便捷。这里推荐两个比较智能的软件分别是autojump
和z
。由于z
体积比较小还有速率比较快,所以比较推荐大家使用z
。autojump
地址:https://github.com/wting/autojump
MANUAL
Grab a copy of autojump:
Run the installation script and follow on screen instructions.
OS X
Homebrew is the recommended installation method for Mac OS X:
MacPorts is also available:
Windows
Windows support is enabled by clink which should be installed prior to installing autojump.
注意!!!
要成功使用,必须要先cd目录,这样子才能生成相应的目录记录,这样子才能使用快捷跳转
z
地址:https://github.com/rupa/z
配置
已安装zsh
在
.zshrc
文件默认有一句plugins=(git)
,由于zsh默认带有 Z ,所以在这里把它添加进去就行,改为plugins=(git z)
。没安装zsh
在源码仓库里可以看到,Z 其实也就是一个 .sh 脚本,所以不管你用的是什么Terminal,只用按以下步骤就能马上使用 Z 。
注意!!!
要成功使用,必须要先cd目录,这样子才能生成相应的目录记录,这样子才能使用快捷跳转
The text was updated successfully, but these errors were encountered: