Artsiom Chapialiou
- 活动总数 239
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 141
- 订阅数 42
-
创建于 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... -
创建于 Testing against Kotlin at LightCodeInsightFixtureTestCase
已回答Need to test highlighting at Kotlin files: public class KdcrCodeInsightTest extends LightCodeInsightFixtureTestCase { public void testHighlighting() { doKotlinTest("fun foo(){ "); doJavaTest... -
创建于 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... -
创建于 Declare dependencies test-compile only (and not test-run) ?
已回答Is 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... -
创建于 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... -
创建于 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... -
创建于 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... -
创建于 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... -
已编辑于 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?... -
已编辑于 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...