From cc0ea0a113fbbfe9efa9ff0265153aad3d369417 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Thu, 17 Feb 2022 00:24:01 -0300 Subject: [PATCH] Update usePlainTextList() --- scripts/common.sh | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/scripts/common.sh b/scripts/common.sh index b1c75a1..57cf9a2 100755 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -154,7 +154,11 @@ usePlainTextMenu() { usePlainTextList() { clear tput bold - shift; msg=${1:2}; printf '%s\n' "$msg"; shift; shift + shift + msg="${1:2} To select an element you must enter its number" + msg="${msg} (which appears to the left of the element)." + msg="${msg} Also, you can deselect an item by re-entering its number." + printf '%s\n' "$msg"; shift; shift tput sgr0 options=() local i=2; j=0; for item in "$@"; do @@ -188,7 +192,10 @@ usePlainTextList() { if [ $((i%3)) -eq 0 ]; then printf '%s\n' "${selectedOptions[@]}" | grep -Fxq "${options[$j]}" retVal=$? - if [ $((++j)) -eq $readVar ] || [ $retVal -eq 0 ]; then + if [ $((++j)) -eq $readVar ] && [ $retVal -eq 0 ]; then + selectedOptions=(${selectedOptions[@]//${options[$((readVar-1))]}/}) + printf '%s\n' "$j) $item" + elif [ $j -eq $readVar ] || [ $retVal -eq 0 ]; then tput setab 2 printf '%s\n' "$j) $item" [ $retVal -ne 0 ] && selectedOptions+=("${options[$((readVar-1))]}")