mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 21:44:11 +01:00
11 lines
219 B
Plaintext
11 lines
219 B
Plaintext
#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
|