#compdef fc

local prev="$words[CURRENT-1]"

if [[ "$prev" = -*e ]]; then
  _command_names -e
elif [[ "$prev" = -[ARWI]## ]]; then
  _files
fi
