Browse Source

fix(colorize): check if $ZSH_COLORIZE_TOOL exists (#11325)

cxy004 1 year ago
parent
commit
23de5d9528
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/colorize/colorize.plugin.zsh

+ 1 - 1
plugins/colorize/colorize.plugin.zsh

@@ -23,7 +23,7 @@ colorize_check_requirements() {
     if [[ ${available_tools[(Ie)$ZSH_COLORIZE_TOOL]} -eq 0 ]]; then
         echo "ZSH_COLORIZE_TOOL '$ZSH_COLORIZE_TOOL' not recognized. Available options are 'pygmentize' and 'chroma'." >&2
         return 1
-    elif (( $+commands["$ZSH_COLORIZE_TOOL"] )); then
+    elif ! (( $+commands[$ZSH_COLORIZE_TOOL] )); then
         echo "Package '$ZSH_COLORIZE_TOOL' is not installed!" >&2
         return 1
     fi