Prop
- 活动总数 87
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 2
- 订阅数 32
-
创建于 JavaProgramPatcher does not work when running Gradle
已回答If 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 -
创建于 How to hide Hint only after text changes or scrolling?
已回答This 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.... -
创建于 Dynamically display Gutter
已回答I 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... -
-
已编辑于 After setting setSingleRow in EditTabs, the SideComponent of TabInfo does not display
已回答This is the code I used to create EditTabs this.jbTabs = JBTabsFactory.createEditorTabs(project, this); jbTabs.getPresentation().setTabDraggingEnabled(true); jbTabs.getPresenta... -
创建于 CodeStyleManager.reformat Not working during big data
已回答private String reformat(FileType fileType, String text) { PsiFile psiFile = PsiFileFactory.getInstance(project).createFileFromText("name.tmp", fileType, text); return WriteCommandAction.... -
创建于 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...