summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 11:31:00 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 11:31:00 +0000
commitc72387bfcaec18c48624209fcdd100b46c0050bd (patch)
tree18098f68cf9ceab2feff387a1a56516abcb80e2d
parent0c6cd454cc55c2b99d171b56da51318c6fc84f22 (diff)
downloadzsh-c72387bfcaec18c48624209fcdd100b46c0050bd.tar.gz
zsh-c72387bfcaec18c48624209fcdd100b46c0050bd.zip
moved to Completion/Zsh/Command/_stat
-rw-r--r--Completion/Builtins/_stat20
1 files changed, 0 insertions, 20 deletions
diff --git a/Completion/Builtins/_stat b/Completion/Builtins/_stat
deleted file mode 100644
index 5ba06388b..000000000
--- a/Completion/Builtins/_stat
+++ /dev/null
@@ -1,20 +0,0 @@
-#compdef stat
-
-local expl ret=1
-
-if [[ "$words[CURRENT-1]" = -[AH] ]]; then
- _arrays
-else
- _tags files options || return 1
-
- while _tags; do
- _requested files && _files && ret=0
- _requested options &&
- { ! zstyle -T ":completion:${curcontext}:options" prefix-needed ||
- [[ "$PREFIX[1]" = + || ret -eq 1 ]] } &&
- _all_labels options expl 'inode element' \
- compadd - +device +inode +mode +nlink +uid +gid +rdev \
- +size +atime +mtime +ctime +blksize +block +link
- (( ret )) || return 0
- done
-fi