diff options
author | Tuowen Zhao <ztuowen@gmail.com> | 2020-11-21 14:57:26 -0700 |
---|---|---|
committer | Tuowen Zhao <ztuowen@gmail.com> | 2020-11-21 14:57:26 -0700 |
commit | 3aaa0bc62ece494dd2b6e47a191de79e562156f9 (patch) | |
tree | 53b623b60358bd9b8a5f9d267166f717e2f3947c /plugins/colorize | |
parent | 058885f5263f29f046c96ea2ecf55e6dca3ed321 (diff) | |
parent | 88b3f028f4a2ffa4f3853a11e4b8e0d78008ca34 (diff) | |
download | zsh-3aaa0bc62ece494dd2b6e47a191de79e562156f9.tar.gz zsh-3aaa0bc62ece494dd2b6e47a191de79e562156f9.tar.bz2 zsh-3aaa0bc62ece494dd2b6e47a191de79e562156f9.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'plugins/colorize')
-rw-r--r-- | plugins/colorize/colorize.plugin.zsh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/colorize/colorize.plugin.zsh b/plugins/colorize/colorize.plugin.zsh index 80b69190f..cb5ac36f5 100644 --- a/plugins/colorize/colorize.plugin.zsh +++ b/plugins/colorize/colorize.plugin.zsh @@ -6,7 +6,8 @@ alias cless="colorize_less" ZSH_COLORIZE_PLUGIN_PATH=$0:A colorize_check_requirements() { - local available_tools=("chroma" "pygmentize") + local -a available_tools + available_tools=("chroma" "pygmentize") if [ -z "$ZSH_COLORIZE_TOOL" ]; then if (( $+commands[pygmentize] )); then |