主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Roy Wright
活动总数
19
最后的活动
2021年10月08日 19:57
成员加入日期
2013年07月06日 17:38
关注
0 名用户
关注者数
0 名用户
投票数
1
订阅数
8
活动概览
帖子(5)
评论(5)
按最近的活动排序
最近的活动
投票数
创建于
2019年03月22日 20:50
I'm attempting to do something similar where I need to use the PSI for multiple languages and am having the same problem. from plugin.xml: <depends>com.intellij.modules.lang</depends><!-- the pat...
社区
IntelliJ IDEA Open API and Plugin Development
Using Python packages
2 票
创建于
2013年08月26日 16:57
I've reached the same conclusion as Sergio. So I'll second the desire for a mechanism to 1) share project settings between team members, and 2) preferably via version control.Thank you!
社区
PyCharm
Share project settings in the
0 票
创建于
2015年08月11日 20:59
And the answer is YES. Basically replace the project menu on gaining focus.Here's the pattern:public class MyPluginRegistration implements ApplicationComponent { // If you register the MyPlugin ...
社区
IntelliJ IDEA Open API and Plugin Development
Is it possible to have per project menus?
0 票
创建于
2015年08月14日 01:24
Using AnAction.update almost works. What happens is AnAction.update is called after the menu is displayed or sometimes on mouse over. So which menu items are visible gets garbled between projects...
社区
IntelliJ IDEA Open API and Plugin Development
Is it possible to have per project menus?
0 票
创建于
2015年08月16日 19:16
Because AnAction.update is not being invoked enough. Try this, put a Log.info in your AnAction.update handlers. Run the plugin from within the idea. Open a project. So far no updates. Open men...
社区
IntelliJ IDEA Open API and Plugin Development
Is it possible to have per project menus?
0 票