2018-10-19 17:27:49 +00:00
|
|
|
# easier alias to use the plugin
|
2018-01-23 03:18:03 +00:00
|
|
|
alias ccat='colorize_via_pygmentize'
|
2013-04-12 14:19:42 +00:00
|
|
|
|
|
|
|
colorize_via_pygmentize() {
|
2018-10-08 15:56:44 +00:00
|
|
|
if ! (( $+commands[pygmentize] )); then
|
|
|
|
echo "package 'Pygments' is not installed!"
|
|
|
|
return 1
|
2013-04-12 14:19:42 +00:00
|
|
|
fi
|
|
|
|
|
2018-10-19 17:27:49 +00:00
|
|
|
# pygmentize stdin if no arguments passed
|
2013-04-12 14:19:42 +00:00
|
|
|
if [ $# -eq 0 ]; then
|
2018-10-19 17:27:49 +00:00
|
|
|
pygmentize -g
|
|
|
|
return $?
|
2013-04-12 14:19:42 +00:00
|
|
|
fi
|
|
|
|
|
2018-10-19 17:27:49 +00:00
|
|
|
# guess lexer from file extension, or
|
|
|
|
# guess it from file contents if unsuccessful
|
|
|
|
local FNAME lexer
|
2013-04-12 14:19:42 +00:00
|
|
|
for FNAME in $@
|
|
|
|
do
|
2018-10-19 17:27:49 +00:00
|
|
|
lexer=$(pygmentize -N "$FNAME")
|
|
|
|
if [[ $lexer != text ]]; then
|
|
|
|
pygmentize -l "$lexer" "$FNAME"
|
2013-04-12 14:19:42 +00:00
|
|
|
else
|
|
|
|
pygmentize -g "$FNAME"
|
|
|
|
fi
|
|
|
|
done
|
2014-05-08 18:19:37 +00:00
|
|
|
}
|