[x]
):99.99999% of the time when I type a colon (:), I want to insert a colon. I don't ever want emoji in my issue descriptions, and the pop-up is super-annoying.
I tried to disable the pop-up by setting REACTIONS
to an empty string in the [ui]
section of app.ini
. But this didn't work.
If disabling these via REACTIONS
is not practical, an additional configuration option is needed. (I'm OK with reactions being available via a dedicated UI button but not every time I type colon.)
REACTIONS
are for reacting to tickets, not for emoji within the ticket. For example, I "reacted" to your ticket with the rocket emoji.
Ah, perhaps I'm confused because the first two emoji which pop up when I type colon are +1 and -1, and the behavior started when I upgraded Gitea from a version which didn't have reactions. My issue is with the text-entry pop-up, not the concept of reacting to issues.
I guess no one would oppose a PR that adds a ui.ENABLE_EMOJI_DROPDOWN
, defaulting to true
.
Maybe a config option that lets you decide what tribute items to enable/disable. Right now I think we just have usernames and emojis, but I could see issues being a future addition as Github has. with all of them defaulting to on.
Right, maybe a ui.DISABLE_MARKDOWN_EDITOR_DROPDOWNS = emoji,username
(default empty). It's a runtime setting so it needs to be handed down to JS via window.config
.
I think a delayed popup like it Github seems to use is preferable. The popup does not steal keyboard input or similar but sometimes can be annoying when typing fast.
This issue has been automatically marked as stale because it has not had recent activity. I am here to help clear issues left open even if solved or waiting for more insight. This issue will be closed if no further activity occurs during the next 2 weeks. If the issue is still valid just add a comment to keep it alive. Thank you for your contributions.
Most helpful comment
I guess no one would oppose a PR that adds a
ui.ENABLE_EMOJI_DROPDOWN
, defaulting totrue
.