`zsh를 실행할 때 zsh 탭 완성이 작동하지 않습니다.`

`zsh를 실행할 때 zsh 탭 완성이 작동하지 않습니다.`

일반적으로 다음과 같은 스크립트를 실행하려고 할 때를 제외하고 탭 완성은 zsh에서 잘 작동합니다.

zsh script.sh

이런 경우 글을 써도 zsh sc[TAB]아무 것도 얻지 못합니다. 알려진 수정 사항이나 원인에 대한 가능한 설명이 있습니까?


$ zsh --version
zsh 5.8 (x86_64-apple-darwin21.0)

내 기존 설정은 다음에서 제공됩니다 zshrc.

# share history across multiple zsh sessions
setopt SHARE_HISTORY
# append to history
setopt APPEND_HISTORY
# adds commands as they are typed, not at shell exit
setopt INC_APPEND_HISTORY
# do not store duplications
setopt HIST_IGNORE_DUPS
# ignore duplicates when searching
setopt HIST_FIND_NO_DUPS
# removes blank lines from history
setopt HIST_REDUCE_BLANKS

# setup autocompletion
autoload -Uz compinit && compinit
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}'
# autocompletion using arrow keys (based on history)
bindkey '\e[A' history-search-backward
bindkey '\e[B' history-search-forward

setopt prompt_subst
autoload -U colors && colors
local resetColor="%{$reset_color%}"
PS1=""
PS1="%F{cyan}"'($(basename "$CONDA_DEFAULT_ENV")) '"$resetColor"
PS1+='%n%{$reset_color%}@$(scutil --get ComputerName):'"$resetColor"
PS1+=$'\e[38;5;211m$(short_cwd) ';
PS1+=$'\e[38;5;48m[$(git_repo):$(git_branch)] ';
PS1+='$resetColor$ ';

관련 정보