mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-13 21:24:58 +08:00
74db6eb90f
Summary: Emojis can now be added in the composer window with colons and the emoji names (referenced by the same names used on Slack/GitHub/etc.). When using the correct syntax, if there are emojis that match the text typed, they appear in a dropdown floating toolbar. Selection works with either mouse clicks or arrow keys (plus `Enter`). Currently, the toolbar won't trigger if the colon is adjacent to a non-whitespace character. Test Plan: TODO: Will write tests soon! Reviewers: evan, bengotow Reviewed By: bengotow Differential Revision: https://phab.nylas.com/D2505
21 lines
399 B
JSON
21 lines
399 B
JSON
{
|
|
"name": "composer-emojis",
|
|
"main": "./lib/main",
|
|
"version": "0.1.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": ""
|
|
},
|
|
"engines": {
|
|
"nylas": ">=0.3.43-b95f1f7"
|
|
},
|
|
"description": "A composer extension for adding emojis to your emails.",
|
|
"dependencies": {
|
|
"node-emoji": "^1.0.4"
|
|
},
|
|
"windowTypes": {
|
|
"default": true,
|
|
"composer": true
|
|
},
|
|
"license": "MIT"
|
|
}
|