shell工具自动提示zsh+oh-my-zsh+zsh-autosuggestions

shell工具自动提示

zsh+oh-my-zsh+zsh-autosuggestions

自动提示补全,自动关联上次输入的命令呀

安装zsh

yum install -y zsh

安装oh-my-zsh

sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)

输入命令zsh使用

修改主题

vi ~/.zshrc

主题目录:https://github.com/robbyrussell/oh-my-zsh/wiki/Themes

ZSH_THEME="risto"

安装自动提示

wget http://mimosa-pudica.net/src/incr-0.2.zsh
mkdir ~/.oh-my-zsh/plugins/incr
mv incr-0.2.zsh ~/.oh-my-zsh/plugins/incr
echo 'source ~/.oh-my-zsh/plugins/incr/incr*.zsh' >> ~/.zshrc
source ~/.zshrc

安装zsh-autosuggestions

可以超级快速的帮你补全你输入过的命令,让命令行的操作更加高效

git clone https://github.com/zsh-users/zsh-autosuggestions ~/.zsh/zsh-autosuggestions
source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
vi ~/.zshrc
添加:plugins=(zsh-autosuggestions)
重启打开crt生效

快捷键

ctrl+f 补全

ctrl+d 删除智能提示


文章作者: Ciwei
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 Ciwei !
 上一篇
免费pdf在线转换 免费pdf在线转换
在线免费pdf world jpg转换 https://www.ilovepdf.com/ https://smallpdf.com/ document.querySelectorAll('.github-
2019-03-21
下一篇 
教你一招用 IDE 编程提升效率的骚操作 教你一招用 IDE 编程提升效率的骚操作
IDEA 有个很牛逼的功能,那就是后缀补全(不是自动补全),很多人竟然不知道这个操作,还在手动敲代码。 这个功能可以使用代码补全来模板式地补全语句,如遍历循环语句(for、foreach)、使用 String.format() 包裹一个字符
2019-03-12
  目录