diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2011-12-14 01:30:08 +0100 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2011-12-14 01:31:10 +0100 |
commit | 3e739c6befbab45a3b6e460b5ce26ac0359155ec (patch) | |
tree | 0cc28cfd413d9f2a3c5c13da83606f2829e641ba /Completion/Unix/Command | |
parent | 00f335b142707b7f9e3531714b7a3bf5b377dcc1 (diff) | |
parent | 79f2f7fa2ce18552869afa33f1d0d42cf4191b04 (diff) | |
download | zsh-3e739c6befbab45a3b6e460b5ce26ac0359155ec.tar.gz zsh-3e739c6befbab45a3b6e460b5ce26ac0359155ec.zip |
Merge commit 'zsh-4.3.14' into debian
Diffstat (limited to 'Completion/Unix/Command')
-rw-r--r-- | Completion/Unix/Command/_nm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_nm b/Completion/Unix/Command/_nm index 276a38f19..5638014d6 100644 --- a/Completion/Unix/Command/_nm +++ b/Completion/Unix/Command/_nm @@ -22,7 +22,8 @@ case $state in "object-files:object file:_path_files -g '*.o'" \ "executable-files:executable file:_path_files -g '*(*)'" \ "dynamic-libraries:dynamic library:_path_files -g '*.so'" \ - "static-libraries:static library:_path_files -g '*.a'" && ret=0 + "static-libraries:static library:_path_files -g '*.a'" \ + "directories:directory:_path_files -g '*(/)'" && ret=0 ;; esac |