about summary refs log tree commit diff
path: root/Completion/Base/_command_names
blob: f21af674c6308f276dbcbfb6cafbc9ea29f7a120 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#defcomp -command-

local nm=$compstate[nmatches] ret=1

compgen -c && ret=0

if [[ nm -eq compstate[nmatches] ]]; then
  _path_files -/g "*(*)"
else
  return ret
fi