Alexandr Danchenko
Java/Kotlin developer
- 活动总数 181
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 1 名用户
- 投票数 12
- 订阅数 55
-
创建于 Error: group with id \"Vcs.MessageActionGroup\" isn't registered; action will be added to the \"Other\" group"
已回答Hello,In our plugin we register AnAction in plugin.xml like this <actions> <action id="my.test.GenerateAction" class="my.test.GenerateAction" text="Generate" ... -
创建于 Error: A suspiciously high nesting of suppressPrioritizing, forgot to call restorePrioritizing
已回答Hello,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... -
创建于 Add CompletionContributor to EditorTextField
已回答HelloI 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 -
已编辑于 MarkdownJCEFHtmlPanel issue: Canceling request for an external page with url
已回答Hello, 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... -
创建于 MarkdownHtmlPanel display plain text, not markdown
已回答Hi, 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(... -
创建于 Is it possible to make horizontal scrollbar not overlap code in Editor?
已回答Hello, 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... -
已编辑于 LineMarkerProviderDescriptor not working properly
已回答Hello, 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. ... -
创建于 java.lang.Throwable: Synchronous execution under ReadAction
已回答Hello, 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... -
创建于 Is it possible to understand which phase right now in LineMarkerProviders?
已回答Hello, This documentation https://plugins.jetbrains.com/docs/intellij/line-marker-provider.html#best-practices-for-implementing-line-marker-providerssays LineMarkersPass queries all LineMarkerPro... -
已编辑于 JCEF webview JavaScript callbacks not working in IntelliJ 2022.3 version
已回答Hello, 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...