config/shell: improve wh highlighting

This commit is contained in:
xeruf 2021-07-09 09:08:11 +02:00
parent 0838f23d8b
commit a5f22fd72e
2 changed files with 4 additions and 3 deletions

View File

@ -50,9 +50,9 @@ rd() {
wh() {
res=$(which "$@")
if expr "$res" : "${@:$#}: aliased to" >/dev/null
then echo "$res" && wh $(expr "$res" : "${@:$#}: aliased to ${@:$#} " >/dev/null && echo "-p") $(echo "$res" | cut -d' ' -f4)
then echo "$res" | bat --style=plain --language=sh && wh $(expr "$res" : "${@:$#}: aliased to ${@:$#} " >/dev/null && echo "-p") $(echo "$res" | cut -d' ' -f4)
# use command which for other shells
else test -r "$res" && b --style=header "$res" || echo "$res" | bat --style=plain --language=sh
else test -r "$res" && b --style=header "$res" || echo "$res" | bat --style=plain --language=sh
fi
}
compdef wh=which

View File

@ -1,6 +1,7 @@
#!/bin/sh
# Clones from resolving the arguments and switches into the new directory
set -e
remote=$(git-repo "$@")
echo "Cloning $remote"
git clone $remote ${@:4} --recurse-submodules || return $?
git clone $remote ${@:4} --recurse-submodules
cd "$(test $4 && echo $4 || basename ${remote%.git})"