Mac系统安装autojump流程 --摘自小胡子哥

Posted 爱上大树的小猪

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mac系统安装autojump流程 --摘自小胡子哥相关的知识,希望对你有一定的参考价值。

查询:

  在命令行中直接运行autojump查看当前系统是否有安装以及版本号

如果显示如下结果:

The program ‘autojump‘ is currently not installed. You can install it by typing:
sudo apt-get install autojump
  • 1  The program ‘autojump‘ is currently not installed. You can install it by typing: 
  • 2  sudo apt-get install autojump

那么就说明你的系统中还没有安装autojump.

安装:

  • 建议安装 zsh
  • 建议安装 homebrew
  • brew install autojump
  • 在 .zshrc 中找到 plugins=,在后面添加

    plugins=(git autojump)
  • 如果有安装VScode 也可以在命令行中执行code . open .zshrc
  • 然后继续在上述文件中添加

    [[ -s $(brew --prefix)/etc/profile.d/autojump.sh ]] && . $(brew --prefix)/etc/profile.d/autojump.sh
  • 完成后重启zsh
  • 在命令行中可以cd打开几个文件夹,然后用j test这样的格式测试看是否回跳转到j后面的文件路径中

以上是关于Mac系统安装autojump流程 --摘自小胡子哥的主要内容,如果未能解决你的问题,请参考以下文章

Mac下的效率工具autojump

autojump 之 git本地安装

autojump的使用

linux之autojump命令

linux之autojump命令

Autojump安装为oh-my-zsh插件