config_query VIS_SYMLINK "Would you like to have /usr/bin/vi as a symlink to /usr/bin/vis?" n &&

if [ "${VIS_SYMLINK}" == "y" ]; then
  if [ -e /usr/bin/vi ] && `readlink -f "/usr/bin/vi" | grep -qv "vis"`; then
    message "${MESSAGE_COLOR}VI is already provided by another vi clone. Recast it" &&
    message "with the vi symlink option disabled, then recast ${SPELL}.${DEFAULT_COLOR}" &&
    VIS_SYMLINK="n"
  fi
fi
