Prop
- Total activity 87
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 32
-
Created JavaProgramPatcher does not work when running Gradle
AnsweredIf this configuration is used,Cannot add Java parameters in JavaProgramPatcher or RunConfigurationExtensionNeed to change the configuration to idea How to work with Gradle and during bootRun execution -
Created How to hide Hint only after text changes or scrolling?
AnsweredThis is my code int flags = HintManager.HIDE_BY_ANY_KEY | HintManager.HIDE_BY_TEXT_CHANGE | HintManager.UPDATE_BY_SCROLLING | HintManager.HIDE_IF_OUT_OF_EDITOR | HintManager.... -
Created Dynamically display Gutter
AnsweredI want to display an icon in the Gutter area when the mouse hovers over a Java method, similar to LineMarkerProvider, but what I want to do is hide it at other times.I found a similar feature, "Tog... -
-
Edited After setting setSingleRow in EditTabs, the SideComponent of TabInfo does not display
AnsweredThis is the code I used to create EditTabs this.jbTabs = JBTabsFactory.createEditorTabs(project, this); jbTabs.getPresentation().setTabDraggingEnabled(true); jbTabs.getPresenta... -
Created CodeStyleManager.reformat Not working during big data
Answeredprivate String reformat(FileType fileType, String text) { PsiFile psiFile = PsiFileFactory.getInstance(project).createFileFromText("name.tmp", fileType, text); return WriteCommandAction.... -
Created How to only execute Kotlin scripts, similar to executing JavaScript.
I want to execute the Kotlin script input by the user in the plugin. Is there a method similar to JavaScript ScriptEngineManager factory = new ScriptEngineManager(); // create a JavaScri... -
Edited LanguageTextField turns off Java file detection
AnsweredI wrote a piece of Java code using LanguageTextField, but it may have reported an error because there is no file name that matches the class name. How to turn off this detection -
Created I have found that the download volume of plugins is decreasing every day. What has happened? Can it still be restored
AnsweredMy plugin originally had 30k downloads, now it's only 10k, what happened? -
Created How to turn off the automatic display of the remaining parts when moving the mouse over an item in JList
AnsweredThis is the default appearanceBut when I move the mouse over the Item, it will automatically display the complete information I want to close it, what should I do