FYI you cannot override the Command+S shortcut on a Mac. So I did another simple macro that I trigger with the Ctrl+S shortcut. I think I can remember this combo.
Code:
Sub Save2()
'Extra Save macro
ActiveDocument.Save
Application.StatusBar = "Brent Saved: " & ActiveDocument.Name
End Sub