1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-11 10:41:12 +02:00
zsh/Completion/Builtins/_fc
1999-10-26 15:36:10 +00:00

9 lines
143 B
Text

#compdef fc
local prev="$words[CURRENT-1]"
if [[ "$prev" = -*e ]]; then
_command_names -e
elif [[ "$prev" = -[ARWI]## ]]; then
_files
fi