Browse Source

init: more informative warning if plugin not found (#7727)

Greg 5 years ago
parent
commit
3a6bf6bd26
1 changed files with 1 additions and 1 deletions
  1. 1 1
      oh-my-zsh.sh

+ 1 - 1
oh-my-zsh.sh

@@ -53,7 +53,7 @@ for plugin ($plugins); do
   elif is_plugin $ZSH $plugin; then
     fpath=($ZSH/plugins/$plugin $fpath)
   else
-    echo "Warning: plugin $plugin not found"
+    echo "[oh-my-zsh] plugin '$plugin' not found"
   fi
 done