diff options
Diffstat (limited to 'lesscolor.sh')
-rwxr-xr-x | lesscolor.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lesscolor.sh b/lesscolor.sh index 4a8dc93..108f0a6 100755 --- a/lesscolor.sh +++ b/lesscolor.sh @@ -64,9 +64,9 @@ case "$1" in *.qbs|*.slim|*.xqy|*.xquery|*.xq|*.xql|*.xqm|*.whiley|*.x10) pygmentize -f 256 -O style="$PYGMENTIZE_STYLE" "$1" | nl -b a;; *) - # interp=$(get_interp "$1") - # pygmentize -f 256 -O style="$PYGMENTIZE_STYLE" -l "$interp" "$1" | nl -b a - pygmentize -f 256 -O style="$PYGMENTIZE_STYLE" -g "$1" | nl -b a + interp=$(get_interp "$1") + pygmentize -f 256 -O style="$PYGMENTIZE_STYLE" -l "$interp" "$1" | nl -b a + # pygmentize -f 256 -O style="$PYGMENTIZE_STYLE" -g "$1" | nl -b a esac exit 0 |