Add zsh wrapper detection to info.sh

This commit is contained in:
Ethan P 2020-03-03 13:39:16 -08:00 committed by David Peter
parent e037afeaca
commit 2f4ecf8fc5
1 changed files with 4 additions and 2 deletions

View File

@ -73,11 +73,13 @@ _bat_wrapper_function_:run() {
*fish*)
if "$SHELL" --login -c 'type bat' 2>&1 | grep 'function' &>/dev/null; then
_out_fence "$SHELL" --login -c 'functions bat'
return
fi ;;
*bash*)
*bash*|*zsh*)
if "$SHELL" --login -c 'type bat' 2>&1 | grep 'function' &>/dev/null; then
_out_fence "$SHELL" --login -c 'declare -f bat'
_out_fence "$SHELL" --login -i -c 'declare -f bat'
return
fi ;;
*)