Fix '--stdout_seperator' not working when '--stdout' gets args
This commit is contained in:
parent
84b8b04d83
commit
6f69aed92e
53
fetch
53
fetch
|
@ -1870,6 +1870,26 @@ prin () {
|
||||||
|
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
|
# Stdout {{{
|
||||||
|
|
||||||
|
stdout () {
|
||||||
|
index=1
|
||||||
|
for func in "${args[@]}"; do
|
||||||
|
|
||||||
|
case "$func" in
|
||||||
|
"--stdout") continue ;;
|
||||||
|
"--"*) break ;;
|
||||||
|
*)
|
||||||
|
case "${args[$((index + 1))]}" in "--"*) unset stdout_seperator ;; esac
|
||||||
|
info "$func"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
index=$((index + 1))
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
# }}}
|
||||||
|
|
||||||
# Underline {{{
|
# Underline {{{
|
||||||
|
|
||||||
getunderline () {
|
getunderline () {
|
||||||
|
@ -2190,20 +2210,15 @@ while [ "$1" ]; do
|
||||||
--stdout_seperator) stdout_seperator="$2" ;;
|
--stdout_seperator) stdout_seperator="$2" ;;
|
||||||
--stdout_subtitles) stdout_subtitles="$2" ;;
|
--stdout_subtitles) stdout_subtitles="$2" ;;
|
||||||
--stdout)
|
--stdout)
|
||||||
stdout="on"
|
case "$2" in
|
||||||
|
"--"* | "") stdout="on" ;;
|
||||||
|
*) stdout="on"; stdout_args="on" ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
unset info_color
|
||||||
image="off"
|
image="off"
|
||||||
color_blocks="off"
|
color_blocks="off"
|
||||||
unset info_color
|
args=("$@")
|
||||||
|
|
||||||
for func in "$@"; do
|
|
||||||
case "$func" in
|
|
||||||
"--stdout") continue ;;
|
|
||||||
"--"*) break ;;
|
|
||||||
*) info "$func" ;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
|
|
||||||
[ ! -z "$output" ] && exit
|
|
||||||
;;
|
;;
|
||||||
|
|
||||||
# Other
|
# Other
|
||||||
|
@ -2269,12 +2284,16 @@ fi
|
||||||
# Move cursor to the top
|
# Move cursor to the top
|
||||||
[ "$image" != "off" ] && printf "\033[0H"
|
[ "$image" != "off" ] && printf "\033[0H"
|
||||||
|
|
||||||
# Get colors / bold
|
if [ "$stdout_args" == "on" ]; then
|
||||||
colors
|
stdout
|
||||||
bold
|
else
|
||||||
|
# Get colors / bold
|
||||||
|
colors
|
||||||
|
bold
|
||||||
|
|
||||||
# Print the info
|
# Print the info
|
||||||
printinfo
|
printinfo
|
||||||
|
fi
|
||||||
|
|
||||||
if [ "$image" != "off" ]; then
|
if [ "$image" != "off" ]; then
|
||||||
# Get cursor position
|
# Get cursor position
|
||||||
|
|
Reference in New Issue