主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Nikolay Chashnikov
活动总数
838
最后的活动
2023年11月23日 11:52
成员加入日期
2007年11月13日 10:36
关注
0 名用户
关注者数
0 名用户
投票数
0
订阅数
334
活动概览
文章(0)
帖子(1)
评论(503)
按最近的活动排序
最近的活动
投票数
创建于
2017年06月20日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Creating ToolWindow programmatically (not plugin.xml)
0 票
创建于
2017年06月13日 16:49
Yes, it's possible to fetch IDEA artifacts from our repository using gradle-intellij-plugin.
社区
IntelliJ IDEA Open API and Plugin Development
IntelliJ as a library
0 票
创建于
2017年06月13日 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).
社区
IntelliJ IDEA Open API and Plugin Development
Dependency on 3rd party plugin (SonarLint)
0 票
创建于
2017年06月13日 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...
社区
IntelliJ IDEA Open API and Plugin Development
[Plugin][Code Intention] Get PsiType of Class to the left of user's cursor
0 票
创建于
2017年06月08日 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...
社区
IntelliJ IDEA Open API and Plugin Development
JDK availability check
0 票
创建于
2017年06月06日 08:26
Yes, you're right, ProjectComponent should help here.
社区
IntelliJ IDEA Open API and Plugin Development
Create a plugin with a i18ln title
0 票
创建于
2017年06月03日 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 ...
社区
IntelliJ IDEA Open API and Plugin Development
Intellij Plugin : how to get the source code in a data structure?
0 票
创建于
2017年05月29日 12:10
Answered in a separate post.
社区
IntelliJ IDEA Open API and Plugin Development
How to build IDEA community edition from source?
0 票
创建于
2017年05月29日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Failed to build IDEA .dmg bundle
0 票
已编辑于
2017年05月27日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Intellij Plugin : how to get the source code in a data structure?
0 票
«
第一页
‹
上一页
下一页
›
最后
»