Indexalice
- 活动总数 32
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 5
- 订阅数 8
-
已编辑于 InstrumentCode error: error then resolving dependency "java-compoiler-ant-tasks" when complier plugin with gradle
已回答Hello 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... -
创建于 How to unregister toolWindow?
已回答Hello team: I'm developing a plugin which register a toolwindow by code below:var toolWindowManager = ToolWindowManager.getInstance(project); var registerToolWindowTask = new RegisterToolWindowTask... -
已编辑于 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
已回答Hello 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... -
创建于 How to init variable before toolWindow init?
已回答Hello 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... -
已编辑于 Cannot find the PluginConfigurationType
已回答Hello 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,... -
创建于 Get selectText 、selectStartPosition、selectEndPosition、fileName from diff window right-click menu
已回答Hello 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... -
创建于 How to open the git windows and focuse on special brance and commit?
已回答I 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... -
已编辑于 Get CommitMessage by commitID
已回答I'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...