主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Aleksey Pivovarov
活动总数
801
最后的活动
2024年09月23日 14:52
成员加入日期
2013年08月06日 15:41
关注
0 名用户
关注者数
0 名用户
投票数
0
订阅数
444
活动概览
文章(0)
帖子(0)
评论(357)
按最近的活动排序
最近的活动
投票数
创建于
2018年05月14日 14:48
First, you can use EditorTrackerListener and `com.intellij.codeInsight.daemon.impl.EditorTracker` to listen for events.But, probably, creating a window is too much of a distraction. For example, yo...
社区
IntelliJ IDEA Open API and Plugin Development
New Editor Tab Action for plugin
1 票
创建于
2018年05月02日 12:07
@Nullable@Overridepublic Object getData(@NonNls String dataId) { if (PlatformDataKeys.COPY_PROVIDER.is(dataId)) { return this; } return null;}
社区
IntelliJ IDEA Open API and Plugin Development
TypeSafeDataProvider Replacement?
1 票
创建于
2018年05月01日 21:26
If you do not need anything unusual, you can use `com.intellij.testFramework.LightVirtualFile`. val file = LightVirtualFile("Sample Name", PlainTextFileType.INSTANCE, "file content") file.isWritab...
社区
IntelliJ IDEA Open API and Plugin Development
Display String value in read-only file editor
1 票
已编辑于
2018年04月04日 09:02
See `com.intellij.openapi.options.ShowSettingsUtil`.`showSettingsDialog` will show settings dialog with passed tab selected.`editConfigurable` will show passed Configurable as a separate window.
社区
IntelliJ IDEA Open API and Plugin Development
Is it possible to open the settings menu of the IDE programaticly and jump to a specific Point?
1 票
已编辑于
2018年03月12日 16:26
I'm not sure if I got the question correctly. Do you want to use intellij features from some external Qt-like GUI framework?Or do you want to create a plugin, that would use Swing and intellij feat...
社区
IntelliJ IDEA Open API and Plugin Development
How to develop on top of the IDEA?
1 票
创建于
2018年03月03日 19:32
You need to add content.putUserData(ToolWindow.SHOW_CONTENT_ICON, Boolean.TRUE);
社区
IntelliJ IDEA Open API and Plugin Development
Icon in tabs
1 票
创建于
2017年08月26日 13:43
Also, there are `com.intellij.openapi.editor.event.EditorEventMulticaster` and `com.intellij.openapi.editor.EditorFactory#getEventMulticaster`.Probably, it will be better than manually tracking all...
社区
IntelliJ IDEA Open API and Plugin Development
how to register a universal editor onlick listener
1 票
创建于
2017年08月24日 13:06
You can use `ToolWindowManager.getInstance(project).getToolWindow(TOOLWINDOW_ID)`.Or you can create projectService and store necessary data there.
社区
IntelliJ IDEA Open API and Plugin Development
Access toolwindow from an action
1 票
已编辑于
2017年08月24日 12:56
>How to detect that file is binaryVirtualFile.getFileType().isBinary()>Maybe exists something like list of supported file extensions?Yes, you can find it in "File | Settings | Editor | File Types"....
社区
IntelliJ IDEA Open API and Plugin Development
IsFileBinary()
1 票
已编辑于
2017年08月17日 11:27
`com.intellij.diff.util.DiffUserDataKeysEx#EDITORS_CARET_POSITION` should help.https://github.com/JetBrains/intellij-community/blob/master/platform/diff-impl/src/com/intellij/diff/tools/util/side/T...
社区
IntelliJ IDEA Open API and Plugin Development
how to invoke the built-in diff action
1 票
«
第一页
‹
上一页
下一页
›
最后
»