aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc.d/ls.sh
diff options
context:
space:
mode:
Diffstat (limited to 'sh/shrc.d/ls.sh')
-rw-r--r--sh/shrc.d/ls.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/sh/shrc.d/ls.sh b/sh/shrc.d/ls.sh
index 8fd42431..705936e6 100644
--- a/sh/shrc.d/ls.sh
+++ b/sh/shrc.d/ls.sh
@@ -18,6 +18,12 @@ ls() {
[ "$({ tput colors || tput Co ; } 2>/dev/null)" -ge 8 ] &&
set -- --color=auto "$@"
+ # Add --hide-control-chars if present; we always want this interactively,
+ # even if the output is to a pager; we shouldn't be trying to script ls(1)
+ # output anyway
+ [ -e "$HOME"/.cache/ls/hide-control-chars ] &&
+ set -- --hide-control-chars "$@"
+
# Add --time-style='+%Y-%m-%d %H:%M:%S' to show trailing indicators of the
# filetype
[ -e "$HOME"/.cache/ls/time-style ] &&