summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libui.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/libui.sh b/libui.sh
index 988c40e..a83919c 100644
--- a/libui.sh
+++ b/libui.sh
@@ -69,7 +69,7 @@ seteditor() {
default=$EDITOR
fi
local opts=()
- declare -A editors=(["nano"]="nano (easy)" ["pico"]="pico (easy)" ["joe"]="joe (bit more powerful)" ["vi"]="vi (advanced)" ["vim"]="vim (advanced)")
+ declare -A editors=(["nano"]="nano (easy)" ["pico"]="pico (easy)" ["joe"]="joe (bit more powerful)" ["vi"]="vi (advanced)" ["vim"]="vim (advanced)" ["zile"]="zile (lossy emacs)")
for editor in ${!editors[@]}
do
which $editor &>/dev/null && opts+=($editor "${editors[$editor]}")