about summary refs log tree commit diff
path: root/Completion/Zsh/Command
diff options
context:
space:
mode:
authorDaniel Shahaf <d.s@xxxxxxxxxxxxxxxxxx>2017-10-07 00:27:01 +0000
committerDaniel Shahaf <d.s@daniel.shahaf.name>2017-10-11 17:50:30 +0000
commitc68cfb1c36513e30ec5896444487694dcd4e12b6 (patch)
tree506fd0028a5ad61b06b5c7794ca9500dbbd7f327 /Completion/Zsh/Command
parent61b544a06832eb29035fb95a6bd942f77881300a (diff)
downloadzsh-c68cfb1c36513e30ec5896444487694dcd4e12b6.tar.gz
zsh-c68cfb1c36513e30ec5896444487694dcd4e12b6.tar.xz
zsh-c68cfb1c36513e30ec5896444487694dcd4e12b6.zip
41825/0001: _stat: Only complete 'stat' if it's provided by the zsh/stat builtin.
Diffstat (limited to 'Completion/Zsh/Command')
-rw-r--r--Completion/Zsh/Command/_stat9
1 files changed, 8 insertions, 1 deletions
diff --git a/Completion/Zsh/Command/_stat b/Completion/Zsh/Command/_stat
index 03e42e3af..303775b23 100644
--- a/Completion/Zsh/Command/_stat
+++ b/Completion/Zsh/Command/_stat
@@ -4,7 +4,10 @@ local expl ret=1
 
 if [[ "$words[CURRENT-1]" = -[AH] ]]; then
   _arrays
-else
+elif [[ $service == zstat ]] ||
+     (( ${+builtins[stat]} )) || 
+     { (( ! ${+builtins} )) && [[ $(type -w stat) == '*: builtin' ]] }
+then
   _tags files options || return 1
 
   while _tags; do
@@ -17,4 +20,8 @@ else
                       +size +atime +mtime +ctime +blksize +block +link
     (( ret )) || return 0
   done
+else
+  # TODO: system-specific completion
+  # TODO: choose this codepath if 'command stat ...' or '=stat ...' is used
+  _files
 fi