mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-11 10:41:12 +02:00
9 lines
143 B
Text
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
|