Artsiom Chapialiou

- Total activity 239
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 141
- Subscriptions 42
-
Created Commercial/Paid or Free IDE's instance recognition.
What is the best way to recognize if my plugin runs under commercial or free IDE? For Idea, we can use a solution from Scott McKinney : https://intellij-support.jetbrains.com/hc/en-us/community/pos... -
Created Testing against Kotlin at LightCodeInsightFixtureTestCase
AnsweredNeed to test highlighting at Kotlin files: public class KdcrCodeInsightTest extends LightCodeInsightFixtureTestCase { public void testHighlighting() { doKotlinTest("fun foo(){ "); doJavaTest... -
Created Adding all bundled plugins *.jar into Classpath when creating new IntellyJ Platform Plugin SDK
Why bundled plugins *.jars don't automatically added to Classpath when creating new `IntellyJ Platform Plugin SDK`? In my case, after creating new `IntellyJ Platform Plugin SDK` I'm adding Intelli... -
Created Declare dependencies test-compile only (and not test-run) ?
AnsweredIs it possible to make dependencies test-compile only and not provide them at test runtime? https://www.jetbrains.com/help/idea/2018.3/dependencies.html - says there is no way to exclude dependency... -
Created TextAttributesKey: how to modify it's TextAttributes?
What's needed: Create new TextAttributesKey that inherit another TextAttributesKey and then change the Font style for the new TextAttributesKey. At the moment I do next: public static final TextAt... -
Created if-else logic in plugin dependencies?
Is there any way to implement conditions when declaring plugin dependencies in plugin.xml? Let's say I want to implement some extensions if module com.intellij.modules.cidr.lang presents and some O... -
Created create NewPsiElement that extend ExistingPsiElement.
At Rename Refactoring we have a simple way to create PsiElement: When the rename refactoring is performed, the method PsiNamedElement.setName() is called for the renamed element, and PsiReference.h... -
Created Customizing "Choose Declaration" dialog
Is there any way to customize "Choose Declaration" dialog for PsiElement with multipule declarations? For now, we have that: Would be really nice to have (or be able to customize that to) somethin... -
Edited PsiElement.replace() proper way to do?
What is the proper way to replace PsiElement? The only found quick explanation is that: Peter Gromov Created September 05, 2016 06:36 Did you get an error message together with the exception?... -
Edited Multiple declarations highlighting issues in IDEA
I'm making CMake highlighter plugin for IDEA/CLion. Right now I'm trying to implement variable declarations/references highlighting and navigation. With navigation, I found few issues that look for...