🖥
Mac OS をアップデートしたら #zsh でタブキーでの #git 補完が効かなくなった
.zshrc
zstyle ':completion:*:*:git:*' script ~/.zsh/git-completion.bash
fpath=(~/.zsh $fpath)
autoload -Uz compinit && compinit
タブキーを押した時のエラー
$ git checkout
_git:.:42: no such file or directory: /Users/yumainaura/.zsh/git-completion.bash
__git_zsh_bash_func:9: command not found: __git_aliased_command
解決
ファイルをダウンロードし直し
それだけ。
# Create the folder structure
mkdir -p ~/.zsh
cd ~/.zsh
# Download the scripts
curl -o git-completion.bash https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash
curl -o _git https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.zsh
Adding Git Completion to Zsh - Oliver Spryn - Medium
Original by Github issue
チャットメンバー募集
何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。
公開日時
2019-10-10
Discussion