mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-08 12:01:21 +02:00
8 lines
195 B
Text
8 lines
195 B
Text
#compdef objdump
|
|
|
|
# borrowed from _nm_object_file
|
|
_objdump_object_file() {
|
|
[[ -x $REPLY || $REPLY = *.([ao]|so|elf) ]]
|
|
}
|
|
|
|
_arguments -- '*:object file:_files -g "*(-.e,_objdump_object_file,)"'
|