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
March 17, 2021 21:22
The method com.intellij.lang.findUsages.MyUsagesProvider#getType is called always when you press CTRL and hover the cursor over the element even with no click. But once per 5 click CTRL + B
Community
IntelliJ IDEA Open API and Plugin Development
How to register findusagesprovider
1 vote
Created
April 28, 2021 16:04
Here you are
Community
IntelliJ IDEA Open API and Plugin Development
PsiReferenceProvider doesn't work with Well Formed XML files
0 votes
Created
April 28, 2021 16:03
class XmlReference(element: PsiElement, private val targets: List<PsiElement?>) : PsiReferenceBase<PsiElement?>(element, TextRange(0, element.text.length + 3)), PsiPolyVariantReference { over...
Community
IntelliJ IDEA Open API and Plugin Development
PsiReferenceProvider doesn't work with Well Formed XML files
0 votes
Created
April 28, 2021 16:03
companion object { private const val DEBUG_METHOD_NAME = "withName" private val DATASET_CONDITION = XmlPatterns.xmlTag().with(object : PatternCondition<XmlTag?>(DEBUG_METHOD_NAME) { ov...
Community
IntelliJ IDEA Open API and Plugin Development
PsiReferenceProvider doesn't work with Well Formed XML files
0 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
Next
›
Last
»