1
qianxi0410 2024 年 3 月 8 日
1. 换 wsl
2. https://github.com/microsoft/terminal + oh-my-posh ,也可以做到类似 zsh+autosug 的效果。 |
2
Golor 2024 年 3 月 8 日
用 Terminal + Powershell7 + oh-my-posh
|
3
fanxasy 2024 年 3 月 8 日
用 msys2 搞吧
|
4
yituanmaoxian 2024 年 3 月 8 日
我用 Terminal + Powershell7+starship
|
5
random1221 2024 年 3 月 8 日
我用 100$的 xshell
|
6
pkoukk 2024 年 3 月 8 日
不要用 git bash
|
7
caffeinecat18 2024 年 3 月 8 日
可以等一下今年的 warp terminal ,带提示功能。
|
8
luckyc OP 破案, 最新版的问题
```bash # 删除现有版本 rm -rf ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions # 检出 v0.6.4 git clone -b v0.6.4 https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions # 查看版本 cat ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions/VERSION ``` |