I'm looking for a way to change the default "send" shortcut in mail to "tab + enter" (like gmail)
I've found a way to change it to cmd + enterwith the following:
defaults write com.apple.mail NSUserKeyEquivalents -dict-add "Send" "@\\U21a9"
but doing something like:
defaults write com.apple.mail NSUserKeyEquivalents -dict-add "Send" "\\u21E5\\U21a9"
Does not work.
I've followed this answer, but I am unable to add the tab key in the shortcut dialog, and would prefer to do it from the command line.
Thanks!