Artsiom Chapialiou
- Total activity 239
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 141
- Subscriptions 42
-
Created run disposable background task
AnsweredCan we somehow run disposable background task? I.e. I would like all my background tasks to be cancelled when project is closed. Would be nice to just pass Project to `ProgressManager#run()` as Di... -
Created BulkFileListener: check if VFileEvent describe changes from "outside" or from Idea
AnsweredHow to do subj? I.e. how to distinguish if BulkFileListener#after()/before() fired because of file been changed from "outside" (let say due to git checkout command) or due to Idea doing saving chan... -
Created how to run Backgroundable Task and wait for result?
Subj. I can run void task in background with private static void runInBackground(@Nullable Project project, @NotNull Runnable runnable) { ProgressManager.getInstance() .run( new Tas... -
Created list of all available platform's Topic<>
AnsweredDo we have a list of all platform's Topics available to subscribe? For now I'm using Ctrl+Alt+F and search for `new Topic<>` and `Topic.create` in All Places. Is it all what is available or I'm mis... -
Created customization of FindUsages drop-down dialog
Can we do subj? Particularly, I need to replace filename with the short file path: all CMakeList.txt files look the same and need to be distinguished by the folder it's located: Looking at: http:/... -
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...