1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-02 22:11:54 +02:00

42222: _object_files: recognize .dylib (macOS)

This commit is contained in:
dana 2018-01-05 10:06:50 +09:00 committed by Jun-ichi Takimoto
parent 1af28cbfd7
commit c8e2f3c3d8
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2018-01-05 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* dana: 42222: Completion/Unix/Type/_object_files: recognize
.dylib extension (macOS).
2018-01-04 Peter Stephenson <p.stephenson@samsung.com>
* dana: 42164: Src/Zle/complist.c, Test/Y01completion.ztst:

View file

@ -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) ]]
}