mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
fix(cli): fix check for completion files in omz plugin load
This commit is contained in:
parent
3dc66bd367
commit
9a11b34101
1 changed files with 3 additions and 3 deletions
|
@ -446,9 +446,9 @@ function _omz::plugin::load {
|
|||
fi
|
||||
|
||||
# Check if it has completion to reload compinit
|
||||
if [[ -f "$base/_$plugin" ]]; then
|
||||
has_completion=1
|
||||
fi
|
||||
local -a comp_files
|
||||
comp_files=($base/_*(N))
|
||||
has_completion=$(( $#comp_files > 0 ))
|
||||
|
||||
# Load the plugin
|
||||
if [[ -f "$base/$plugin.plugin.zsh" ]]; then
|
||||
|
|
Loading…
Reference in a new issue