vim app off by default
This commit is contained in:
parent
f7a01e6e6f
commit
d067de37d9
|
@ -64,9 +64,13 @@ function show_apps {
|
|||
do
|
||||
if [[ ${APPS_INSTALLED[$app_index]} == "0" && "$select_all_apps" != "add-all" ]]; then
|
||||
applist="$applist $n $a off"
|
||||
else
|
||||
if [[ "$a" == "vim" && "$select_all_apps" == "add-all" ]]; then
|
||||
applist="$applist $n $a off"
|
||||
else
|
||||
applist="$applist $n $a on"
|
||||
fi
|
||||
fi
|
||||
n=$[n+1]
|
||||
app_index=$[app_index+1]
|
||||
done
|
||||
|
|
Loading…
Reference in New Issue