2
0
mirror of https://github.com/sharkdp/bat synced 2024-11-15 00:12:57 +00:00

Add -i option for bash/zsh to output wrapper function

This commit is contained in:
sharkdp 2020-04-09 09:18:08 +02:00 committed by David Peter
parent 116d76a00f
commit 496dd29cb9

View File

@ -81,7 +81,7 @@ _bat_wrapper_function_:run() {
*bash* | *zsh*)
if "$SHELL" --login -i -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
;;