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