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
June 20, 2017 08:16
If you have an issues with toolwindows registered via plugin.xml it would be better to find out the cause of these issues, otherwise you may get the same problems if you register a toolwindow in co...
Community
IntelliJ IDEA Open API and Plugin Development
Creating ToolWindow programmatically (not plugin.xml)
0 votes
Created
June 13, 2017 16:49
Yes, it's possible to fetch IDEA artifacts from our repository using gradle-intellij-plugin.
Community
IntelliJ IDEA Open API and Plugin Development
IntelliJ as a library
0 votes
Created
June 13, 2017 12:01
No, 'depends' tag should work for all plugins. Just specify 'id' of the required plugin in it (org.sonarlint.idea for SonarLint plugin).
Community
IntelliJ IDEA Open API and Plugin Development
Dependency on 3rd party plugin (SonarLint)
0 votes
Created
June 13, 2017 07:57
You can call referenceExpression.resolve() to get instance of PsiClass it refers to, it'll automatically take import statements into account. Then you can invoke You can invoke PsiElementFactory#cr...
Community
IntelliJ IDEA Open API and Plugin Development
[Plugin][Code Intention] Get PsiType of Class to the left of user's cursor
0 votes
Created
June 08, 2017 14:39
You can check JavaPsiFacade.getInstance(project).findClass(CommonClassNames.JAVA_UTIL_OPTIONAL, scope) != null instead. 'scope' arguments describes where the class will be searched. If you invoke t...
Community
IntelliJ IDEA Open API and Plugin Development
JDK availability check
0 votes
Created
June 06, 2017 08:26
Yes, you're right, ProjectComponent should help here.
Community
IntelliJ IDEA Open API and Plugin Development
Create a plugin with a i18ln title
0 votes
Created
June 03, 2017 08:16
Surely you can you any third-party parser, but it would be much more efficient to use PSI structures, because they are already built and IDEA automatically updates them when you change code in the ...
Community
IntelliJ IDEA Open API and Plugin Development
Intellij Plugin : how to get the source code in a data structure?
0 votes
Created
May 29, 2017 12:10
Answered in a separate post.
Community
IntelliJ IDEA Open API and Plugin Development
How to build IDEA community edition from source?
0 votes
Created
May 29, 2017 12:09
Which branch of IDEA community sources do you use? Regarding signing exe files and building dmg files: you need to provide implementation of SignTool interface, and define MacHostProperties in Prop...
Community
IntelliJ IDEA Open API and Plugin Development
Failed to build IDEA .dmg bundle
0 votes
Edited
May 27, 2017 20:21
No, you can iterate over interesting elements only using a visitor (JavaRecursiveElementWalkingVisitor for java). Or you can call 'getClasses' method on PsiJavaFile to get classes from it, and then...
Community
IntelliJ IDEA Open API and Plugin Development
Intellij Plugin : how to get the source code in a data structure?
0 votes
«
First
‹
Previous
Next
›
Last
»