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 29, 2017 09:04
In fact you can develop a plugin using a Java module as well as Plugin module. Please firstly check if the plugin is loaded: look at Settings | Plugin and find your plugin in the list. If the plugi...
Community
IntelliJ IDEA Open API and Plugin Development
Issue of running sample plugin
0 votes
Created
June 21, 2017 16:10
BTW maybe it's possible to restore your files even if your project was completely deleted. IntelliJ IDEA saves history of your recent changes in its caches, so if you create an empty project with s...
Community
IntelliJ IDEA Users
Please help! IntelliJ 11 just deleted all my files!!!!!
0 votes
Created
June 21, 2017 15:42
Gord, we're sorry for that. If the files were deleted during rebuild most probably it means that you have 'Clear output directory on rebuild' option enabled in Settings | Compiler, and an output di...
Community
IntelliJ IDEA Users
Please help! IntelliJ 11 just deleted all my files!!!!!
0 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
«
First
‹
Previous
Next
›
Last
»