主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Brian Faris
活动总数
75
最后的活动
2021年04月09日 21:56
成员加入日期
2016年02月18日 17:40
关注
0 名用户
关注者数
0 名用户
投票数
3
订阅数
30
活动概览
帖子(7)
评论(35)
按最近的活动排序
最近的活动
投票数
已编辑于
2020年04月13日 05:31
I haven't tested it but Editor.getMarkupModel().addRangeHighlighter() might be what you are looking for. Can get editor object with Editor editor = FileEditorManager.getInstance(project).getSelecte...
社区
IntelliJ IDEA Open API and Plugin Development
How to programmatically implement a contrasting UI style similar to code diff in ide?
0 票
已编辑于
2020年04月13日 04:39
You can test your 2019.1 built plugin against 2020.1 in the build.gradle file using: intellij { updateSinceUntilBuild false plugins = ['java'] version = '2019.1'} runIde { ideDirectory ...
社区
IntelliJ IDEA Open API and Plugin Development
Deprecated API usage and new IntelliJ versions
0 票
已编辑于
2020年04月11日 20:09
Here's what my settings look like for a copy of Darcula that has Tab color modified:<scheme name="_@user_Darcula" version="142" parent_scheme="Darcula"><metaInfo><property name="created">2020-04-11...
社区
IntelliJ IDEA Open API and Plugin Development
How do I change the color of the underline of the active editor tab?
0 票
已编辑于
2020年04月11日 18:24
In your scheme .xml file for your IDE settings, try adding: <option name="TAB_UNDERLINE" value="FFC0CB"/> in <colors> element. Programmaticly, this works: EditorColorsManager.getInstance().getGloba...
社区
IntelliJ IDEA Open API and Plugin Development
How do I change the color of the underline of the active editor tab?
0 票
创建于
2020年03月19日 19:40
By "change the project" do you mean to load a new project in the same window or a new project in a new window?For the same window, I imagine this would work: ProjectManager.getInstance().addProject...
社区
IntelliJ IDEA Open API and Plugin Development
clearing tool window on project change
0 票
创建于
2018年11月01日 18:07
Try using a BorderLayout instead and add 2 JPanels to it (one at BorderLayout.EAST and BorderLayout.WEST).
社区
IntelliJ IDEA Open API and Plugin Development
ToolWindow incorrect alignments.
0 票
创建于
2018年10月03日 00:10
Create a new class that implements ProjectComponent, register it in the plugin.xml, then put the code you want to run in the constructor.
社区
IntelliJ IDEA Open API and Plugin Development
Handle file opening
0 票
已编辑于
2018年10月02日 03:19
File opened listener: MessageBus bus = project.getMessageBus();bus.connect().subscribe(FileEditorManagerListener.FILE_EDITOR_MANAGER, new FileEditorManagerListener() { @Override public void f...
社区
IntelliJ IDEA Open API and Plugin Development
Handle file opening
0 票
已编辑于
2018年09月01日 20:59
Clearing ToolWindow: public void cleartoolwindow(Project project){ ToolWindow toolWindow = ToolWindowManager.getInstance(project).getToolWindow("SCA_Tool"); toolWindow.getContentManager().rem...
社区
IntelliJ IDEA Open API and Plugin Development
How to clear the content of a ToolWindow?
0 票
创建于
2018年08月25日 16:05
Editor switch listener: MessageBus bus = project.getMessageBus();bus.connect().subscribe(FileEditorManagerListener.FILE_EDITOR_MANAGER, new FileEditorManagerListener() { @Override public void...
社区
IntelliJ IDEA Open API and Plugin Development
Displaying a dialog box when the editor content is changed
0 票
«
第一页
‹
上一页
下一页
›
最后
»