diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 1999-07-12 17:02:52 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 1999-07-12 17:02:52 +0000 |
commit | 59c3d242d546059cad473f1155ad0e350fe45260 (patch) | |
tree | aea57772a784915c5cd8e7bd485948f28842976a /Completion/User | |
parent | b346c4796b3abdadd31cb0999d2f099ce9aa79af (diff) | |
download | zsh-59c3d242d546059cad473f1155ad0e350fe45260.tar.gz zsh-59c3d242d546059cad473f1155ad0e350fe45260.tar.xz zsh-59c3d242d546059cad473f1155ad0e350fe45260.zip |
Initial revision
Diffstat (limited to 'Completion/User')
-rw-r--r-- | Completion/User/_use_lo | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Completion/User/_use_lo b/Completion/User/_use_lo new file mode 100644 index 000000000..e469154ea --- /dev/null +++ b/Completion/User/_use_lo @@ -0,0 +1,10 @@ +#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 |