about summary refs log tree commit diff
path: root/Completion/Unix/Type/_object_files
blob: 6b931372f18bff2f0b0c2559e3d90d5b4b32b68f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#autoload

local expl

_description files expl 'object file'

__object_file() {
  [[ -x $REPLY || $REPLY = *.(a|o|elf|dylib) || $REPLY = *.so(.<->)# ||
	$REPLY = (core*|*.core) ]]
}

_files -g '*(-.e,__object_file,)' "$@" "${(@)expl}"