Add support for the standard MacOS emoji keyboard command. #3407
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
MacOS utilizes the
cmd+ctrl+space
command to display the emoji keyboard. As a new user that has heavily adopted the usage of emoji in everyday life, I struggled to figure out how to display the emoji keyboard.After a lot of due-diligence (which included searching the repository), I finally found the
input_unicode_character
command, which calls theunicode_input
kitten. I was then able to add support to my configuration file, and now it works off from muscle memory.While the
unicode_input
kitten is not identical to the emoji keyboard provided by MacOS, it still is the primary way to access emoji, and I wanted to pay-it-forward so that future MacOS users can migrate even easier.Knowing what I know now, and re-referencing the website, I was able to find mention of the
unicode_input
option. However, as someone that never references them as Unicode-based input, and instead calls them emoji, this was overlooked. It's not very evident as a new user doing a search about how to access them. Is there a way I could also assist in helping update the documentation to call out the emoji-based support?