aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc.d
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-25 13:18:47 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-25 13:18:47 +1200
commit6b83e4ac5fb95d8783748d458fc0ba6a3415e1a7 (patch)
tree70c197c6beb5a0472bc7aa146b1f576031d6a407 /sh/shrc.d
parentPrevent readline completing dotfiles without a dot (diff)
downloaddotfiles-6b83e4ac5fb95d8783748d458fc0ba6a3415e1a7.tar.gz
dotfiles-6b83e4ac5fb95d8783748d458fc0ba6a3415e1a7.zip
Switch ls()/readline to horizontal list/complete
<https://github.com/izabera/libash/blob/9e709a56a148b4311792cc66cd21b61a73434573/extras/sample_inputrc#L33>
Diffstat (limited to 'sh/shrc.d')
-rw-r--r--sh/shrc.d/ls.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/sh/shrc.d/ls.sh b/sh/shrc.d/ls.sh
index 705936e6..a7a6e15f 100644
--- a/sh/shrc.d/ls.sh
+++ b/sh/shrc.d/ls.sh
@@ -18,6 +18,10 @@ ls() {
[ "$({ tput colors || tput Co ; } 2>/dev/null)" -ge 8 ] &&
set -- --color=auto "$@"
+ # Add --format=horizontal to print entries in a saner way
+ [ -e "$HOME"/.cache/ls/format ] &&
+ set -- --format=horizontal "$@"
+
# 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