feat(plugins): add grc plugin for Generic Colouriser (#9315)

Co-authored-by: Marc Cornellà <marc.cornella@live.com>
This commit is contained in:
Mark Mercado 2020-12-09 11:59:12 -05:00 committed by GitHub
commit e5af22cca6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 81 additions and 0 deletions

View file

@ -0,0 +1,44 @@
# Adapted from: https://github.com/garabik/grc/blob/master/grc.zsh
if [[ "$TERM" = dumb ]] || (( ! $+commands[grc] )); then
return
fi
# Supported commands
cmds=(
cc
configure
cvs
df
diff
dig
gcc
gmake
ifconfig
iwconfig
last
ldap
make
mount
mtr
netstat
ping
ping6
ps
traceroute
traceroute6
wdiff
whois
)
# Set alias for supported commands
for cmd in $cmds; do
if (( $+commands[$cmd] )); then
eval "function $cmd {
grc --colour=auto \"${commands[$cmd]}\" \"\$@\"
}"
fi
done
# Clean up variables
unset cmds cmd