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:
parent
1af28cbfd7
commit
c8e2f3c3d8
2 changed files with 6 additions and 1 deletions
|
@ -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:
|
||||
|
|
|
@ -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) ]]
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue