mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-23 02:10:26 +08:00
colorize: add compatibility for zsh < 5.1 (#9400)
The direct assignment of a local array is not possible in older ZSH version, as used by RHEL/CentOS 7.
This commit is contained in:
parent
63922b5ec4
commit
47d30784c5
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user