diff options
Diffstat (limited to 'Completion/Unix')
-rw-r--r-- | Completion/Unix/Type/_object_files | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Type/_object_files b/Completion/Unix/Type/_object_files index 70b5b6688..595265116 100644 --- a/Completion/Unix/Type/_object_files +++ b/Completion/Unix/Type/_object_files @@ -5,7 +5,7 @@ local expl _description files expl 'object file' __object_file() { - [[ -x $REPLY || $REPLY = *.(a|o|elf) || $REPLY = *.so(.<->)# || + [[ -x $REPLY || $REPLY = *.(a|o|elf|dylib) || $REPLY = *.so(.<->)# || $REPLY = (core*|*.core) ]] } |