#compdef fc

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

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