|
@@ -9,7 +9,7 @@ colorize_via_pygmentize() {
|
|
|
|
|
|
# pygmentize stdin if no arguments passed
|
|
# pygmentize stdin if no arguments passed
|
|
if [ $# -eq 0 ]; then
|
|
if [ $# -eq 0 ]; then
|
|
- pygmentize -g
|
|
|
|
|
|
+ pygmentize -f terminal -g
|
|
return $?
|
|
return $?
|
|
fi
|
|
fi
|
|
|
|
|
|
@@ -20,9 +20,9 @@ colorize_via_pygmentize() {
|
|
do
|
|
do
|
|
lexer=$(pygmentize -N "$FNAME")
|
|
lexer=$(pygmentize -N "$FNAME")
|
|
if [[ $lexer != text ]]; then
|
|
if [[ $lexer != text ]]; then
|
|
- pygmentize -l "$lexer" "$FNAME"
|
|
|
|
|
|
+ pygmentize -f terminal -l "$lexer" "$FNAME"
|
|
else
|
|
else
|
|
- pygmentize -g "$FNAME"
|
|
|
|
|
|
+ pygmentize -f terminal -g "$FNAME"
|
|
fi
|
|
fi
|
|
done
|
|
done
|
|
}
|
|
}
|