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
Edited
July 18, 2017 19:56
The necessary debug information should already be logged (see LOG.warn a bit higher).https://github.com/JetBrains/intellij-community/blob/master/platform/platform-impl/src/com/intellij/openapi/comp...
Community
IntelliJ IDEA Open API and Plugin Development
Add own Line Status / VCS Diff Changes with own Content?
0 votes
Created
June 13, 2017 20:58
It should have logged an exception in the log.
Community
IntelliJ IDEA Open API and Plugin Development
Add own Line Status / VCS Diff Changes with own Content?
0 votes
Edited
June 02, 2017 15:38
>It looks as if these events are blocked until leaving the IDE, but why?Probably, you're observing the "Save on frame deactivation" behavior. You can try disabling automatic save in "File | Setting...
Community
IntelliJ IDEA Open API and Plugin Development
Add own Line Status / VCS Diff Changes with own Content?
0 votes
Created
May 31, 2017 12:25
Probably, the issue is somewhere in logic, reused from GitCompareWithBranchAction.You have to update it manually when smth is changed. (ex: if you have a file that is the same in "test" and "master...
Community
IntelliJ IDEA Open API and Plugin Development
Add own Line Status / VCS Diff Changes with own Content?
0 votes
Created
May 30, 2017 13:09
I'm not sure if an API for this request exists .You can try "new git4idea.GitFileRevision().loadContent()" (or directly call git4idea.util.GitFileUtils#getFileContent). But this approach will fail ...
Community
IntelliJ IDEA Open API and Plugin Development
Add own Line Status / VCS Diff Changes with own Content?
0 votes
Created
May 29, 2017 15:42
>key value pair kind of data store.com.intellij.openapi.components.PersistentStateComponenthttp://www.jetbrains.org/intellij/sdk/docs/basics/persisting_state_of_components.html
Community
IntelliJ IDEA Open API and Plugin Development
How can i run plugin from startup in background?
0 votes
Created
May 29, 2017 15:29
>api of VCS(GIT) like getting of current branchgit4idea.repo.GitRepositorygit4idea.commands.Git4ex: GitUtil.getRepositoryManager(project).getRepositories(), GitRepository#getCurrentBranchThere are ...
Community
IntelliJ IDEA Open API and Plugin Development
How can i run plugin from startup in background?
0 votes
Edited
May 29, 2017 08:58
>but now what i want to do is run the plugin after IDE starts in background,com.intellij.openapi.components.ProjectComponent / ApplicationComponentWill be called when project / application are open...
Community
IntelliJ IDEA Open API and Plugin Development
How can i run plugin from startup in background?
0 votes
Created
May 23, 2017 17:55
>But i dont see any buttons in the toolbarYes, "standard" actions work with LineStatusTrackerManager and not with your markers.You'll have to implement another ones, that do the same thing (but wit...
Community
IntelliJ IDEA Open API and Plugin Development
Add own Line Status / VCS Diff Changes with own Content?
0 votes
Created
May 23, 2017 13:03
For the listing, you can take a look at LineStatusTrackerManager. It's more complicated, than you'd need, but is a good starting point.It's easier to answer specific questions like "How to do X" or...
Community
IntelliJ IDEA Open API and Plugin Development
Add own Line Status / VCS Diff Changes with own Content?
0 votes
«
First
‹
Previous
Next
›
Last
»