Indexalice
- Total activity 32
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 5
- Subscriptions 8
-
Edited InstrumentCode error: error then resolving dependency "java-compoiler-ant-tasks" when complier plugin with gradle
AnsweredHello team:I'm using gradle to build a custom plugin.But unfortunatly,I must develop it in company intranet.So I must use idea lib local Here is the build.gradle partly:plugins{ id("java") id("or... -
Created How to unregister toolWindow?
AnsweredHello team: I'm developing a plugin which register a toolwindow by code below:var toolWindowManager = ToolWindowManager.getInstance(project); var registerToolWindowTask = new RegisterToolWindowTask... -
Edited IDEA: Compatibility issue when developing with 2021.1.2 IU-2111.7628.21 and the git4idea plugin but work on on 2023.3.2 IU-233.13135.103
AnsweredHello team: I'm develop a idea plugin work with git,and use lib IDEA 2021.1.2 IU-2111.7628.21 and the git4idea plugin from IDEA 2021.1.2 . Here is the code:import git4idea.history.GitHistoryUt... -
Created How to init variable before toolWindow init?
AnsweredHello teamI'm developing a plugin and define custom toolWindow ,here is the plugin.xml<extensions defaultExtensionNs="com.intellij"> <toolWindow id = "myPlugin" anchor="right" factoryClass="com... -
Edited Cannot find the PluginConfigurationType
AnsweredHello team: I'm developing a idea plugin and run/debug it by configuration PluginConfigurationType ,It always work well. But yesterday I update idea version to 2023.3.1 Build #UI-233.11799.300,... -
Created Get selectText 、selectStartPosition、selectEndPosition、fileName from diff window right-click menu
AnsweredHello teamI 'm developing a plugin work with git and add a action to diff window right-click menu by code blew:<action popup="true" id="action1",class="demo.action.Action1"> <add-to-group group-id... -
Created How to open the git windows and focuse on special brance and commit?
AnsweredI developing a plugin work with git.And I want to open the git windows and focuse on special brance and commit by branch name and the commit id.I found I can open the git window by code blew :Proje... -
Edited Get CommitMessage by commitID
AnsweredI'm developing a IDEA plugin with idea4git and I need to get commit message by commit id which is get from VcsFullCommitDetails.getId.asString. I think I can get it by GitHistoryUtils.collectCommit...