Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Aleksey Pivovarov
Total activity
801
Last activity
September 23, 2024 14:52
Member since
August 06, 2013 15:41
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
444
Activity overview
Articles (0)
Posts (0)
Comments (357)
Sort by recent activity
Recent activity
Votes
Created
February 05, 2020 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...
Community
IntelliJ IDEA Open API and Plugin Development
Presentation changes for AnAction do not persist
0 votes
Edited
December 30, 2019 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...
Community
IntelliJ IDEA Open API and Plugin Development
Clicking on a row in the project tree doesn't open the file anymore
0 votes
Created
December 04, 2019 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.
Community
IntelliJ IDEA Open API and Plugin Development
How to create own BranchActionGroupPopup?
0 votes
Created
December 03, 2019 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...
Community
IntelliJ IDEA Open API and Plugin Development
How to create own BranchActionGroupPopup?
0 votes
Created
November 28, 2019 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 ...
Community
IntelliJ IDEA Open API and Plugin Development
How to check if document is under write action?
0 votes
Edited
November 28, 2019 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...
Community
IntelliJ IDEA Open API and Plugin Development
How to check if document is under write action?
0 votes
Created
November 27, 2019 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...
Community
IntelliJ IDEA Open API and Plugin Development
FileStatusListener reacts only onSave
0 votes
Created
November 27, 2019 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...
Community
IntelliJ IDEA Open API and Plugin Development
Virtual File changes only occur when clicking off Intellij
0 votes
Edited
November 27, 2019 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...
Community
IntelliJ IDEA Open API and Plugin Development
FileStatusListener reacts only onSave
0 votes
Created
November 21, 2019 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...
Community
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 votes
«
First
‹
Previous
Next
›
Last
»