diff options
author | Barton E. Schaefer <schaefer@zsh.org> | 2015-06-14 20:10:50 -0700 |
---|---|---|
committer | Barton E. Schaefer <schaefer@zsh.org> | 2015-06-14 20:10:50 -0700 |
commit | 806f73a0b3d3959d5af12ce97e0258b4d4fe7d76 (patch) | |
tree | 9d3123c1f177d0b55f88d6520df47a7fae76d811 /Completion/Unix | |
parent | f1923bdfa6300a0d32e3329eb2488447f76b8970 (diff) | |
download | zsh-806f73a0b3d3959d5af12ce97e0258b4d4fe7d76.tar.gz zsh-806f73a0b3d3959d5af12ce97e0258b4d4fe7d76.tar.xz zsh-806f73a0b3d3959d5af12ce97e0258b4d4fe7d76.zip |
35467: complete files for non-GNU du
Diffstat (limited to 'Completion/Unix')
-rw-r--r-- | Completion/Unix/Command/_du | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_du b/Completion/Unix/Command/_du index d8871cd8d..4065a20de 100644 --- a/Completion/Unix/Command/_du +++ b/Completion/Unix/Command/_du @@ -74,5 +74,5 @@ else do [[ $OSTYPE = $~pattern ]] && args+=( $arg ) done - _arguments -s -A "-*" $args + _arguments -s -A "-*" $args '*:file:_files' fi |