aboutsummaryrefslogtreecommitdiffstats
path: root/lesscolor.sh
diff options
context:
space:
mode:
authorterminaldweller <thabogre@gmail.com>2022-07-07 06:30:23 +0000
committerterminaldweller <thabogre@gmail.com>2022-07-07 06:30:23 +0000
commited09c5f82ed5ef4932f67af72551807e13a4412d (patch)
tree6ad4a8bcbd08a9cf8b6b3e6a2871d200b478d9eb /lesscolor.sh
parentupdated haproxy (diff)
downloadscripts-ed09c5f82ed5ef4932f67af72551807e13a4412d.tar.gz
scripts-ed09c5f82ed5ef4932f67af72551807e13a4412d.zip
a lot of updates
Diffstat (limited to '')
-rwxr-xr-xlesscolor.sh6
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