Yurii Rakovets
- Total activity 35
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 4
- Subscriptions 11
-
Created BranchChangeListener.branchHasChanged() received wrong branch name if user created new branch
AnsweredI added BranchChangeListener project.getMessageBus().connect().subscribe(BranchChangeListener.VCS_BRANCH_CHANGED, new DmBranchChangeListener(project)); public class DmBranchChangeListener implement... -
Created verifier and new extensions points
AnsweredI write the plugin for Intellij 2018.*-2019.3 I use extensions points <extensions defaultExtensionNs="com.intellij"> <openapi.vcs.ui.cloneDialog.VcsCloneDialogExtension implementation="c... -
Created Plugin developing for Idea 2019.3 EAP
AnsweredI'm developing vcs-integration plugin. There are many structural changes in 2019.3, as a new clone window, two variants commit process, etc. How I can import new version jars? I tried to use in bu... -
Created 2019.2 CheckinProjectPanel.setCommitMessage(String currentDescription) doesn't work properly
AnsweredI use checkinHandlerFactory and editChangelistSupport extension points to make some actions with commit messages. I get CheckinProjectPanel implementation from CheckinHandlerFactory.createHandler(.... -
Created How to run code once at project open
AnsweredI want to add listener for message, code like project.getMessageBus().connect().subscribe(Topic<L>, L) But I want to do it once at project become opened. Is there a simple way to do that, witho... -
Created JBTabbedPane UI replaced after theme switch
AnsweredHello. Would you help me fix a problem I added a toolwindow by a plugin with JBTabbedPane in it. When a user switches the theme from Intellij to Darcula and back (or vice-versa), IDE gets side UI i... -
Created ui-element at Version control / Log
AnsweredWould you prompt me what UI-controls are used at Version control tool window at the Log tab? The table is without header but with allowing of a column width changes at the grid. I couldn't find it ... -
Edited How to run my beforeCheckin() after code analysis and TODO checking
AnsweredI make the plugin that edit commit message. I want to run my code after a code analysis performed. I use vcsCheckinHandlerFactory extension point, class that extends CheckinHandler and method befor...