Well what I'm saying is:

Code:
alias -s hello.* {
  echo -a $1 : $2-
}
alias hello.my.mentality {
  echo -a $1-
}


If you did /hello.my.mentality it would call the second alias, because hello.my.mentality overrides hello.* But if it was done "first come first serve" then it would call the first alias because it was first. Maybe there would be a option or something...