diff options
| author | dana <dana@dana.is> | 2018-01-05 10:06:50 +0900 |
|---|---|---|
| committer | Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> | 2018-01-05 10:06:50 +0900 |
| commit | c8e2f3c3d8792a4cf91de04d08c0d92e436da237 (patch) | |
| tree | ba946d8a497e53992e537520a820009d55242ec7 /Completion | |
| parent | 42164: fix digits in format escapes in completion listings (diff) | |
| download | zsh-c8e2f3c3d8792a4cf91de04d08c0d92e436da237.tar zsh-c8e2f3c3d8792a4cf91de04d08c0d92e436da237.tar.gz zsh-c8e2f3c3d8792a4cf91de04d08c0d92e436da237.tar.bz2 zsh-c8e2f3c3d8792a4cf91de04d08c0d92e436da237.tar.lz zsh-c8e2f3c3d8792a4cf91de04d08c0d92e436da237.tar.xz zsh-c8e2f3c3d8792a4cf91de04d08c0d92e436da237.tar.zst zsh-c8e2f3c3d8792a4cf91de04d08c0d92e436da237.zip | |
42222: _object_files: recognize .dylib (macOS)
Diffstat (limited to 'Completion')
| -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) ]] } |
