Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Sargo Tar
Total activity
61
Last activity
April 28, 2021 16:04
Member since
January 21, 2020 09:58
Following
0 users
Followed by
0 users
Votes
9
Subscriptions
17
Activity overview
Posts (11)
Comments (24)
Sort by recent activity
Recent activity
Votes
Created
April 23, 2021 16:08
Here you are import com.intellij.psi.*import com.intellij.psi.PsiReferenceRegistrar.HIGHER_PRIORITYimport com.intellij.psi.xml.XmlAttributeimport com.intellij.psi.xml.XmlTagimport com.intellij.util...
Community
IntelliJ IDEA Open API and Plugin Development
PsiReferenceProvider doesn't work with Well Formed XML files
0 votes
Created
April 13, 2021 15:51
Thanks, helped, if (element !is XmlToken) returnval tag = element.parentif (tag !is XmlTag) return // check XmlTokenTypeval usages = mutableListOf<XmlAttribute>()//... fill usagesval subIcon = Nav...
Community
IntelliJ IDEA Open API and Plugin Development
Performance warning: LineMarker is supposed to be registered for leaf elements only
0 votes
Created
April 11, 2021 07:11
build.gradle.kts file import io.gitlab.arturbosch.detekt.Detektimport org.jetbrains.changelog.closureimport org.jetbrains.changelog.markdownToHTMLimport org.jetbrains.kotlin.gradle.tasks.KotlinCom...
Community
IntelliJ IDEA Open API and Plugin Development
Why pluginUntilBuild is mandatory
0 votes
Edited
April 09, 2021 09:40
It works, thank you, I've put the version into plugin.xml, and removed code with method patchPluginXml from file build.gradle.kts patchPluginXml { version(properties("pluginVersion")) sinceB...
Community
IntelliJ IDEA Open API and Plugin Development
Why pluginUntilBuild is mandatory
0 votes
Edited
April 08, 2021 13:02
It is almost empty <idea-plugin> <id>com.***</id> <name>plugin name</name> <vendor>***</vendor> <depends>com.intellij.modules.platform</depends> <extensions defaultExtensionNs="com.i...
Community
IntelliJ IDEA Open API and Plugin Development
Why pluginUntilBuild is mandatory
0 votes
Created
April 08, 2021 11:19
If I don't specify untilBuild I can't install it too Intellije IDEA, it says untilBuild is not specified. I created plugin using template in GitHub
Community
IntelliJ IDEA Open API and Plugin Development
Why pluginUntilBuild is mandatory
0 votes
Created
April 08, 2021 10:09
Thank you, setCellRenderer helped
Community
IntelliJ IDEA Open API and Plugin Development
RelatedItemLineMarkerProvider shows the line itself
0 votes
Edited
April 07, 2021 19:34
Tried with setNamer, it is invoked (in debug mode) but the result still the same val subIcon = NavigationGutterIconBuilder.create(AllIcons.Gutter.ImplementingMethod) .setTargets(tags) .setNa...
Community
IntelliJ IDEA Open API and Plugin Development
RelatedItemLineMarkerProvider shows the line itself
0 votes
Created
April 07, 2021 19:00
Implemented, never triggered, nothing changed. class XmlGotoTargetRendererProvider : GotoTargetRendererProvider { override fun getRenderer(element: PsiElement, gotoData: GotoTargetHandler.GotoD...
Community
IntelliJ IDEA Open API and Plugin Development
ReferenceContributor for XML
0 votes
Edited
April 07, 2021 15:49
No, it doesn't help, I tried HIGHER_PRIORITY and even 1000.0, it doesn't work when XML has no well-formed declaration
Community
IntelliJ IDEA Open API and Plugin Development
PsiReferenceProvider doesn't work with Well Formed XML files
0 votes
«
First
‹
Previous
Next
›
Last
»