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
December 21, 2017 12:46
141.* is IntelliJ IDEA 14.1 version which was released 3 years ago. It indeed doesn't have this class. Do you really need to develop a plugin for such an old version?
Community
IntelliJ IDEA Open API and Plugin Development
Build artifact from a directory after poststartupactivity
0 votes
Created
December 21, 2017 07:13
The full name of class is com.intellij.task.ProjectTaskManager. If you don't have such a class, it means that your plugin project isn't configured properly. How did you set it up? Do you write it u...
Community
IntelliJ IDEA Open API and Plugin Development
Build artifact from a directory after poststartupactivity
0 votes
Created
December 21, 2017 07:07
In order to get dependencies of you project you need to use com.intellij.openapi.roots.ModuleRootManager class. ModuleRootManager.getInstance(module).orderEntries().forEachLibrary() will process li...
Community
IntelliJ IDEA Open API and Plugin Development
Fetching content of resource folder of dependent JAR via IntelliJ plugin
0 votes
Created
December 20, 2017 07:07
You can use ProjectTaskManager#build(Artifact[]) for that.
Community
IntelliJ IDEA Open API and Plugin Development
Build artifact from a directory after poststartupactivity
0 votes
Created
December 18, 2017 08:15
Hello, if you're creating a project from a directory you should also create a module and add a content root in it (see our help for details). You can use ModuleManager to create a module and Module...
Community
IntelliJ IDEA Open API and Plugin Development
New Project from existing Directory not showing Directories
0 votes
Created
December 13, 2017 07:04
Yes, SDK editor is located in Project Structure dialog which is available in IntelliJ IDEA only. However adding a facet isn't enough to fix this because facet editors are also located in Project St...
Community
IntelliJ IDEA Open API and Plugin Development
Facet for Custom Language SDK in Rubymine
0 votes
Created
December 11, 2017 07:20
I'm not quite understand what do you mean by "i want take them from plantuml plugin". You may add dependency on plantuml plugin and add your actions into menus registered in plantuml plugin.
Community
IntelliJ IDEA Open API and Plugin Development
creating a new plugin
0 votes
Created
December 04, 2017 14:24
You shouldn't perform any actions which depend on settings in 'initComponent' method, because settings may be changed after IDE is started, and in that case 'loadState' will be called again but 'in...
Community
IntelliJ IDEA Open API and Plugin Development
It is possible to get config from `loadState` before running `initComponent` ?
0 votes
Created
December 04, 2017 07:52
Which version of IntelliJ IDEA do you use to open and build IDEA project?
Community
IntelliJ IDEA Open API and Plugin Development
Unable to build community edition
0 votes
Created
November 29, 2017 07:23
You can dynamically load an extension via Extensions.getRootArea().registerExtension(). However it may be simpler to just check if the option is enabled in 'annotate' method and do nothing if the f...
Community
IntelliJ IDEA Open API and Plugin Development
It is possible to dynamically add or remove annotator section in extensions ?
0 votes
«
First
‹
Previous
Next
›
Last
»