主页
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)
按最近的活动排序
最近的活动
投票数
已编辑于
2019年07月10日 12:39
1) You can use `FileEditor#isModified`. See also `FileEditor#PROP_MODIFIED` and `FileEditor#addPropertyChangeListener`.2) Probably, you can listen for `FileDocumentManagerListener#beforeAllDocument...
社区
IntelliJ IDEA Open API and Plugin Development
Custom file editor / save file
0 票
已编辑于
2019年07月04日 15:11
Events should be fired for com.intellij.openapi.editor.event.DocumentListener.`VirtualFileListener.contentsChanged` should be notified when changes are saved on disk. Ex: on explicit "Save All (Ctr...
社区
IntelliJ IDEA Open API and Plugin Development
Comparing directories using DiffManger
0 票
创建于
2019年07月03日 14:08
I do not think so.You can, probably, inherit package-private `com.intellij.openapi.vfs.ex.dummy.VirtualFileDataImpl` and use it in a copy of `createChildFile`.Or ask us to support `setWritable` in ...
社区
IntelliJ IDEA Open API and Plugin Development
Comparing directories using DiffManger
0 票
创建于
2019年06月26日 11:54
You can show a custom popup menu when toolbar button is clicked and have full control over it.Smth like this: https://github.com/JetBrains/intellij-community/blob/a0e582f54c47c87bf7d13246b7ffa3db40...
社区
IntelliJ IDEA Open API and Plugin Development
CustomComponentAction not rendering my custom component
0 票
创建于
2019年06月24日 12:39
Also, icon might not be shown on toolbar if it is too big (actions use 16/32px images, and plugin icons are 40/80px).
社区
IntelliJ IDEA Open API and Plugin Development
New actions on toolbar
0 票
已编辑于
2019年06月24日 12:33
`pluginIcon.svg` is used in plugin marketpace.https://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_icon_file.htmlAction icons use different mechanism:https://www.jetbrains.org...
社区
IntelliJ IDEA Open API and Plugin Development
New actions on toolbar
0 票
创建于
2019年06月11日 10:40
This is an action from Kotlin plugin:https://github.com/JetBrains/kotlin/blob/3854a323faecbabfd0a08217fcde5c67529ad985/idea/src/org/jetbrains/kotlin/idea/actions/JavaToKotlinAction.kt
社区
IntelliJ IDEA Open API and Plugin Development
Converting Java to Kotlin
0 票
创建于
2019年06月11日 10:11
There are no handy API to get this info.You can take a look at implementation of `com.intellij.openapi.vcs.actions.AnnotateDiffViewerAction`. Notably, `collectEventData` and `createTwosideAnnotatio...
社区
IntelliJ IDEA Open API and Plugin Development
VcsUtil.getVcsFor return null
0 票
创建于
2019年06月10日 17:51
`VirtualFile` that is shown in diff viewer does not belong to LocalFileSystem.`VcsUtil.getVcsFor(project, virtualFile)` returns `null` for such files, as they are not under VCS (ex: you can't chang...
社区
IntelliJ IDEA Open API and Plugin Development
VcsUtil.getVcsFor return null
0 票
创建于
2019年05月06日 10:46
You can override `com.intellij.openapi.ui.DialogWrapper#createActions` (and `com.intellij.openapi.ui.DialogWrapper#createLeftSideActions`).See "Tip of the day" dialog as an example: https://github....
社区
IntelliJ IDEA Open API and Plugin Development
Custom buttons in DialogWrapper
0 票
«
第一页
‹
上一页
下一页
›
最后
»