Disable macOS Emoji Shortcut

Arthur Wang 的泡面番
1 min readJul 21, 2017

I don’t know since when OSX/macOS has a Ctrl + Cmd + Space shortcut to get out an Emoji input dialog, which is really annoying when you use this shortcut for other purpose like Alfred, Spotlight or even code completion.

Just found a way to disable it, copy paste following line in Terminal.

defaults write -g NSUserKeyEquivalents -dict-add ‘Emoji & Symbols’ ‘\0’

via: https://apple.stackexchange.com/questions/106288/how-to-disable-mavericks-emoji-shortcut

--

--