Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Nikolay Chashnikov
Total activity
838
Last activity
November 23, 2023 11:52
Member since
November 13, 2007 10:36
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
334
Activity overview
Articles (0)
Posts (1)
Comments (503)
Sort by recent activity
Recent activity
Votes
Created
February 16, 2016 13:55
Hmm, it's strange. Does the problem repeat if you close the project, restart the IDE and then reopen the project?
Community
IntelliJ IDEA Open API and Plugin Development
Programmatically configured Web facet does not appear in "Web" sidebar
0 votes
Created
April 27, 2016 08:18
Hi Etan, why your DeploymentSourceType is loaded only when the SettingsEditor opens? DeploymentSourceType is an extension point, its implementation should be registered in plugin.xml and their inst...
Community
IntelliJ IDEA Open API and Plugin Development
SettingsEditor marking dirty/modified immediately
0 votes
Created
May 16, 2016 12:35
Sorry for the late reply, I've fixed the problem with deployment configuraion (https://youtrack.jetbrains.com/issue/IDEA-156073). The problem was in com.intellij.remoteServer.impl.configuration.dep...
Community
IntelliJ IDEA Open API and Plugin Development
SettingsEditor marking dirty/modified immediately
0 votes
Created
March 02, 2016 11:19
No, it isn't possible to disable 'Next' button from FrameworkSupportConfigurable.
Community
IntelliJ IDEA Open API and Plugin Development
Validate forms of Facet Editor and FrameworkSupport.
0 votes
Created
March 22, 2016 07:53
Yes, you can. Just create a new action and add it to 'NewProjectOrModuleGroup' action group.
Community
IntelliJ IDEA Open API and Plugin Development
Add custom new <AppName> Project in android studio
0 votes
Created
March 22, 2016 08:11
It's better to execute initialization logic lazily when the related classes/methods are used. The build process may be invoked for a project which doesn't contain anything related to your plugin so...
Community
IntelliJ IDEA Open API and Plugin Development
Where to put JPS plugin initialization logic?
0 votes
Created
March 22, 2016 14:11
AttachSourcesProvider works only for java *.class files, so it won't help in your case. You can look at AttachSourcesNotificationProvider sources to see how it's implemented and write something sim...
Community
IntelliJ IDEA Open API and Plugin Development
Implementing Download Sources for a new Language
0 votes
Created
March 22, 2016 14:28
1. TeamCity indeed doesn't have built-in support for building IDEA plugins. You can configure an artifact in IDEA project structure by hand and build it using TeamCity IDEA Project Runner. 2. You c...
Community
IntelliJ IDEA Open API and Plugin Development
Package Plugins with Team City
0 votes
Created
February 04, 2016 14:45
Official comment
Hi Bastien, yes, you can compile code in CompileTask in the same process as the IDE. It's preferable to run compilation processes in a separate process because they are usually consume a lot of CPU...
Community
IntelliJ IDEA Open API and Plugin Development
Compile code in CompileTask?
0 votes
Created
February 04, 2016 19:29
Official comment
Sorry for late reply. In order to create a run configuration call com.intellij.execution.RunManager#createConfiguration and then RunManager#addConfiguration to add the configuration to the list. If...
Community
IntelliJ IDEA Open API and Plugin Development
Setting run configurations and executing run option
0 votes
«
First
‹
Previous
Next
›
Last
»