Alexandr Danchenko
Java/Kotlin developer
- Total activity 180
- Last activity
- Member since
- Following 0 users
- Followed by 1 user
- Votes 12
- Subscriptions 55
-
Created Error: group with id \"Vcs.MessageActionGroup\" isn't registered; action will be added to the \"Other\" group"
AnsweredHello,In our plugin we register AnAction in plugin.xml like this <actions> <action id="my.test.GenerateAction" class="my.test.GenerateAction" text="Generate" ... -
Created Error: A suspiciously high nesting of suppressPrioritizing, forgot to call restorePrioritizing
AnsweredHello,I'm trying to fix the next issue in the plugin: Error: A suspiciously high nesting of suppressPrioritizing, forgot to call restorePrioritizing.In the plugin we have StructureViewTreeElement a... -
Created Add CompletionContributor to EditorTextField
AnsweredHelloI need to show CompletionContributor suggestions in my EditorTextField. Is it possible? For example, if user typing ‘/’ I want to show my suggestions.Could you please help?Best regards,Alex -
Edited MarkdownJCEFHtmlPanel issue: Canceling request for an external page with url
AnsweredHello, In our plugin we use MarkdownJCEFHtmlPanel to display markdown. We use it like this val file = LightVirtualFile("content.md", text)val markdownPanel = MarkdownJCEFHtmlPanel(project, file)Dis... -
Created MarkdownHtmlPanel display plain text, not markdown
AnsweredHi, I added Markdown plugin to my plugin and displayed markdown string in MarkdownHtmlPanel, but it's shown just as plain text. private val markdownPanel = JCEFHtmlPanelProvider().createHtmlPanel(... -
Created Is it possible to make horizontal scrollbar not overlap code in Editor?
AnsweredHello, I added an Editor to my JPanel and it works fine. But if a text is too long it will add a horizontal scrollbar and it's ok. But because a horizontal scrollbar takes place in Editor it also a... -
Edited LineMarkerProviderDescriptor not working properly
AnsweredHello, I implemented my LineMarkerProviderDescriptor, but it's not working properly. It must display gutter icons in provided lines, but sometimes it shows icons in the right place, sometimes not. ... -
Created java.lang.Throwable: Synchronous execution under ReadAction
AnsweredHello, I need to get file content by sha in my LineMarkerProviderDescriptor. But I'm getting "java.lang.Throwable: Synchronous execution under ReadAction".Right now my code looks like this: private... -
Created Is it possible to understand which phase right now in LineMarkerProviders?
AnsweredHello, This documentation https://plugins.jetbrains.com/docs/intellij/line-marker-provider.html#best-practices-for-implementing-line-marker-providerssays LineMarkersPass queries all LineMarkerPro... -
Edited JCEF webview JavaScript callbacks not working in IntelliJ 2022.3 version
AnsweredHello, I'm working on simple webview plugin and implemented few JavaScript callbacks. While I'm running my plugin in test mode (launching plugin in sandbox ide) all works perfect. But after I build...