We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2237479 commit c9ed445Copy full SHA for c9ed445
README.md
@@ -3,7 +3,7 @@
3
This plug-in provides Emoji support for GitBucket.
4
5
- Convert Emoji directives in Markdown or other places as images
6
-- Completion Emoji directives in the textarea
+- Suggest Emoji directives in the textarea
7
8

9
src/main/scala/Plugin.scala
@@ -24,8 +24,8 @@ class Plugin extends gitbucket.core.plugin.Plugin {
24
}
25
)
26
27
- override val completionProposalProviders = Seq(
28
- new CompletionProposalProvider {
+ override val suggestionProviders = Seq(
+ new SuggestionProvider {
29
override val id: String = "emoji"
30
override val prefix: String = ":"
31
override val suffix: String = ": "
0 commit comments