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
September 13, 2017 06:36
You can provide implementation of com.intellij.codeInsight.quickfix.UnresolvedReferenceQuickFixProvider extension for PsiJavaCodeReferenceElement to do that.
Community
IntelliJ IDEA Open API and Plugin Development
Can I overwirte extensionPoints define in IdeaPlugin.xml
0 votes
Created
September 12, 2017 07:44
Could you please describe that exactly do you want to do with the plugin? Do you want to generate a Java class from scratch? Or you want to add a field to an existing class? Anyway, you don't need ...
Community
IntelliJ IDEA Open API and Plugin Development
Can I overwirte extensionPoints define in IdeaPlugin.xml
0 votes
Created
September 11, 2017 11:26
It's possible to make IDE use your language extension instead of default one by adding order="first" attribute to its xml tag. However it's risky, when something changes in the standard implementat...
Community
IntelliJ IDEA Open API and Plugin Development
Can I overwirte extensionPoints define in IdeaPlugin.xml
0 votes
Created
September 08, 2017 08:47
There are hundreds of ways you can embed something into IDEA with the use of plugin.xml. Is that Swing-GUI part of your own dialog? If so how is it invoked, from the main menu, or from some popup m...
Community
IntelliJ IDEA Open API and Plugin Development
How to: Get Project path
0 votes
Created
September 08, 2017 08:21
Then how your Swing-GUI is invoked from IDEA?
Community
IntelliJ IDEA Open API and Plugin Development
How to: Get Project path
0 votes
Created
September 05, 2017 15:50
It's an instance of Project. If your code is invoked inside AnAction, you can get instance of the current project from AnActionEvent#getProject.
Community
IntelliJ IDEA Open API and Plugin Development
How to: Get Project path
0 votes
Created
September 05, 2017 15:23
If you want to get location of source roots, try the following: ModuleRootManager.getInstance(ModuleManager.getInstance(p).getModules()[0]).getSourceRoots() It'll return locations of all source roo...
Community
IntelliJ IDEA Open API and Plugin Development
How to: Get Project path
0 votes
Created
September 05, 2017 14:56
> if I create a new project on IntelliJ, it also creates a folder in wich my project is stored. I want this and nothing else! This isn't always true. On the last page of 'New Project' wizard we hav...
Community
IntelliJ IDEA Open API and Plugin Development
How to: Get Project path
0 votes
Created
September 05, 2017 14:37
Hello, what do you mean by 'my project is stored'? Project may contain different kind of files. There are project configurations files (.idea directory), there are directories where java sources ar...
Community
IntelliJ IDEA Open API and Plugin Development
How to: Get Project path
0 votes
Created
September 04, 2017 08:55
You can call 'buildPlugin' task from intellij-gradle-plugin, it'll produce a zip file containing the plugin distribution in build/distributions directory. You can install that zip file into PyCharm...
Community
IntelliJ IDEA Open API and Plugin Development
Problem installing juliafy in PyCharm
0 votes
«
First
‹
Previous
Next
›
Last
»