Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Roy Wright
Total activity
19
Last activity
October 08, 2021 19:57
Member since
July 06, 2013 17:38
Following
0 users
Followed by
0 users
Votes
1
Subscriptions
8
Activity overview
Posts (5)
Comments (5)
Sort by recent activity
Recent activity
Votes
Created
March 22, 2019 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...
Community
IntelliJ IDEA Open API and Plugin Development
Using Python packages
2 votes
Created
August 26, 2013 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!
Community
PyCharm
Share project settings in the
0 votes
Created
August 11, 2015 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 ...
Community
IntelliJ IDEA Open API and Plugin Development
Is it possible to have per project menus?
0 votes
Created
August 14, 2015 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...
Community
IntelliJ IDEA Open API and Plugin Development
Is it possible to have per project menus?
0 votes
Created
August 16, 2015 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...
Community
IntelliJ IDEA Open API and Plugin Development
Is it possible to have per project menus?
0 votes