主页
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)
按最近的活动排序
最近的活动
投票数
创建于
2020年02月05日 23:33
Yes, this is how it works.>we are calling setEnabled() on both the Presentation and the template PresentationWhy?>we don't want to call setEnabled() every timeWhy?In practice, you shouldn't need to...
社区
IntelliJ IDEA Open API and Plugin Development
Presentation changes for AnAction do not persist
0 票
已编辑于
2019年12月30日 23:48
Yes, this class name is hardcoded.See https://youtrack.jetbrains.com/issue/IDEA-178054https://github.com/JetBrains/intellij-community/blob/master/platform/util/ui/src/com/intellij/util/ui/tree/Wide...
社区
IntelliJ IDEA Open API and Plugin Development
Clicking on a row in the project tree doesn't open the file anymore
0 票
创建于
2019年12月04日 17:25
For the record, you're doing it at your own risk.These internals are not an API and might be changed without any notice.
社区
IntelliJ IDEA Open API and Plugin Development
How to create own BranchActionGroupPopup?
0 票
创建于
2019年12月03日 16:20
If you need to dramatically change this popup, it is easier not to extend it.You can use `JBPopupFactory.getInstance().createActionGroupPopup()` and have full control over actions in it.See also `G...
社区
IntelliJ IDEA Open API and Plugin Development
How to create own BranchActionGroupPopup?
0 票
创建于
2019年11月28日 13:01
Yes. But you shouldn't think about such weird documents (unless you've created one yourself).Also, I'd suggest using background threads over "invokeLater" for the same reason (long operation in UI ...
社区
IntelliJ IDEA Open API and Plugin Development
How to check if document is under write action?
0 票
已编辑于
2019年11月28日 12:40
>How can I check if document/file is currently under write action?"Write action" is a global lock, rather than a document state, see https://www.jetbrains.org/intellij/sdk/docs/basics/architectural...
社区
IntelliJ IDEA Open API and Plugin Development
How to check if document is under write action?
0 票
创建于
2019年11月27日 12:48
It does not.java.lang.Throwable: System: Linuxat com.intellij.codeInsight.problems.WolfTheProblemSolverImpl$3.fileStatusChanged(WolfTheProblemSolverImpl.java:131)at com.intellij.openapi.vcs.impl.Fi...
社区
IntelliJ IDEA Open API and Plugin Development
FileStatusListener reacts only onSave
0 票
创建于
2019年11月27日 10:52
>However, at this point the before and after methods are both exactly the same, there is no difference between them. The difference is the order in which they are invoked (ex: you can't access newl...
社区
IntelliJ IDEA Open API and Plugin Development
Virtual File changes only occur when clicking off Intellij
0 票
已编辑于
2019年11月27日 10:30
Do you implement `FileStatusListener#fileStatusChanged(VirtualFile)` method as well?It should be fired when Document is modified, without waiting for changes to be saved on disk.Note that FileStatu...
社区
IntelliJ IDEA Open API and Plugin Development
FileStatusListener reacts only onSave
0 票
创建于
2019年11月21日 15:28
Note, that vcs roots can be changed at any point.If you're interested in GitRepositoryManager.getRepositories() updates, you can listen for `com.intellij.dvcs.repo.VcsRepositoryManager#VCS_REPOSITO...
社区
IntelliJ IDEA Open API and Plugin Development
New Behavior for VCS Root related messages, How do I know when all VCS roots for the project have initialized?
0 票
«
第一页
‹
上一页
下一页
›
最后
»