mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-27 18:21:10 +02:00
10 lines
219 B
Text
10 lines
219 B
Text
#compdef gls gdiff
|
|
|
|
# This is for GNU-like commands which understand the --help option,
|
|
# but which do not otherwise require special completion handling.
|
|
|
|
if [[ $PREFIX = --* ]]; then
|
|
_long_options
|
|
else
|
|
_default
|
|
fi
|