Brice
- Total activity 128
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 35
- Subscriptions 26
-
Created shortenClassReferences does not "shorten" java.util.Collections
AnsweredHello. I am writing an intention that is adding some statements, these statements uses types from external library and some from the JDK (such as `java.util.Collections`). The types from the extern... -
Created Displaying modified indicator with custom editor (JCEF)
AnsweredHi I am struggling to get the modified indicator (the asterisk in the editor tab), with a custom editor (JCEF based). I know about `FileEditor.PROP_MODIFIED`, I have implemented the property chan... -
Created With split panes, toolbar action apply to the selected / active editor
AnsweredSuppose two diagrams are displayed side-to-side. Eg Here, the right editor is selected (notice the blue line on the editor tab). When toolbar icon is interacted on the right editor, the action wil... -
Created Documentation about JetBrains/rd (LifetimeDefinition, IPropertyView, etc)
AnsweredHi, I noticed some plugin using `rd` (Reactive Distributed) types. However I wasn't able to find any proper documentation. From what I think I understood from the project some of the Kotlin types a... -
Created Some classes decompiled (via custom `ClassFileDecompilers.Light`) produce `InvalidMirrorException: stub:[PsiMethod:Checker...`
AnsweredHello, I am developing jd-intellij, which is the IDEA integration of JD-Core, which is a java decompiler (you probably heard about JD-GUI). I identified a case, likely not the only one where Intell... -
Created Working with breakpoints in decompiled source
Hi,I'm one of the developper of JD-IntelliJ a Java Decompiler plugin for IntelliJ IDEA.Some of the users require the ability to set breakpoints in the decompiled source, see the #1 and #3 comments ... -
Created Plugin details in custom / enterprise plugin repository
Hi,I would like to create my own repository for a plugin. So with some digging I finaly created one, it's working correctly, however I cannot see any details of plugin.xml. (name, changelog, vendor... -
Created Is there a way to build a plugin with a script (ant, gradle)
Hi,I would like to prepare a plugin to be packaged. I know there is an UI action for that "Build > Prepare Plugin Module ..."However I would like to be able to run a script instead.There are severa... -
Created How to refresh / invalidate the cache of decompiled files ?
I'm using the extension point ContentBasedClassFileProcessor. The method String obtainFileText(Project project, VirtualFile virtualFile) returns the mirror source as expected. However when toggling... -
Created Replacing the content of a java file editor
Hi,I'm just beginning with IntelliJ plugin developpment.I would like to replace *automatically* (on opening) the Java editor content, when the source file is not found (ie I'd like to override the ...