Navigation Menu

Skip to content

Commit

Permalink
.osx: Fix ⌘ + Enter shortcut in Mail.app
Browse files Browse the repository at this point in the history
Removing `-string` and just passing the unescaped string value of the shortcut as a second param seems to solve the problem.

Closes #603 and #661.
  • Loading branch information
mathiasjakobsen authored and mathiasbynens committed May 23, 2016
1 parent 40fd8cc commit ef819d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .osx
Expand Up @@ -496,7 +496,7 @@ defaults write com.apple.mail DisableSendAnimations -bool true
defaults write com.apple.mail AddressesIncludeNameOnPasteboard -bool false

# Add the keyboard shortcut ⌘ + Enter to send an email in Mail.app
defaults write com.apple.mail NSUserKeyEquivalents -dict-add "Send" -string "@\\U21a9"
defaults write com.apple.mail NSUserKeyEquivalents -dict-add "Send" "@\U21a9"

# Display emails in threaded mode, sorted by date (oldest at the top)
defaults write com.apple.mail DraftsViewerAttributes -dict-add "DisplayInThreadedMode" -string "yes"
Expand Down

0 comments on commit ef819d5

Please sign in to comment.