diff options
| author | Daniel Shahaf <d.s@xxxxxxxxxxxxxxxxxx> | 2017-10-07 00:27:01 +0000 |
|---|---|---|
| committer | Daniel Shahaf <d.s@daniel.shahaf.name> | 2017-10-11 17:50:30 +0000 |
| commit | c68cfb1c36513e30ec5896444487694dcd4e12b6 (patch) | |
| tree | 506fd0028a5ad61b06b5c7794ca9500dbbd7f327 /Completion/Zsh | |
| parent | 41855: completion option updates for OpenBSD 6.2 and handle macOS in rm compl... (diff) | |
| download | zsh-c68cfb1c36513e30ec5896444487694dcd4e12b6.tar zsh-c68cfb1c36513e30ec5896444487694dcd4e12b6.tar.gz zsh-c68cfb1c36513e30ec5896444487694dcd4e12b6.tar.bz2 zsh-c68cfb1c36513e30ec5896444487694dcd4e12b6.tar.lz zsh-c68cfb1c36513e30ec5896444487694dcd4e12b6.tar.xz zsh-c68cfb1c36513e30ec5896444487694dcd4e12b6.tar.zst zsh-c68cfb1c36513e30ec5896444487694dcd4e12b6.zip | |
41825/0001: _stat: Only complete 'stat' if it's provided by the zsh/stat builtin.
Diffstat (limited to 'Completion/Zsh')
| -rw-r--r-- | Completion/Zsh/Command/_stat | 9 |
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 |
