主页
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年11月29日 07:52
You can add/remove extension directly in 'loadState' method. But note that it's not recommended to create ApplicationComponent in plugins, see its javadoc for details. Why not just return from 'ann...
社区
IntelliJ IDEA Open API and Plugin Development
It is possible to dynamically add or remove annotator section in extensions ?
1 票
创建于
2017年11月16日 06:39
If the file name is fixed you can use FilenameIndex.processFilesByName to process all files with such name. Pass GlobalSearchScope.moduleWithDependenciesAndLibrariesScope to it to search only insid...
社区
IntelliJ IDEA Open API and Plugin Development
Check file exists in modules class path from LanguageFileType & read all files
1 票
创建于
2017年11月13日 09:31
So you don't need to override LanguageFileType. An implementation of LanguageFileType represents a specific kind of files (e.g. java files, xml files, etc), so you don't need to implement it unless...
社区
IntelliJ IDEA Open API and Plugin Development
Check file exists in modules class path from LanguageFileType & read all files
1 票
创建于
2017年11月01日 12:28
It's great that you have found the solution. But I recommend you to try gradle-intellij-plugin to develop IntelliJ Platfrom plugins with Gradle. You can setup required plugins via `intellij.plugins...
社区
IntelliJ IDEA Open API and Plugin Development
Configuring IntelliJ Platform plugin's workspace
1 票
创建于
2017年10月10日 15:43
Hi, ClassLoader loads classes from *.class files from directories which are added to its classpath. Classpath of ClassLoader.getSystemClassLoader consists of paths to the IDE JARs, not directories ...
社区
IntelliJ IDEA Open API and Plugin Development
Intellij Plugin - Load class object from source project
1 票
创建于
2017年10月02日 10:59
Hello, IdeaProjects path isn't stored anywhere. By default IDEA suggests to create new projects under USER_HOME/IdeaProjects directory, but if you change that it'll remember your choice and will su...
社区
IntelliJ IDEA Open API and Plugin Development
How to retrieve the IdeaProjects path?
1 票
创建于
2017年09月12日 07:40
Regarding build problems: you use JDK 1.8.0_31 version which is quite old, java compiler (javac) in that version has bugs which prevents compilation of IDEA sources. Please update JDK to a newer on...
社区
IntelliJ IDEA Open API and Plugin Development
seeking help with IntelliJ Build errors
1 票
创建于
2017年09月11日 07:24
PyCharm and other IntelliJ-based IDEs run under Java Virtual Machine, so you can write plugins in any language which may be compiled to JVM bytecode, i.e. not only in Java, but also Groovy, Scala, ...
社区
IntelliJ IDEA Open API and Plugin Development
Out of curiosity, can plugins be developed in the language the tool targets ?
1 票
创建于
2017年08月01日 06:22
Looks like your IDEA wasn't fully compiled. Try invoking Build | Build Project for the IntelliJ IDEA project.
社区
IntelliJ IDEA Open API and Plugin Development
Debug IntelliJ IDEA from IntelliJ IDEA
1 票
创建于
2017年07月12日 07:54
Dropdown menus are represented by com.intellij.openapi.actionSystem.ActionGroup. Its 'getChildren' method has 'AnActionEvent' parameter so you can obtain the project from it and dynamically generat...
社区
IntelliJ IDEA Open API and Plugin Development
An Action class that also implements ProjectComponent?
1 票
«
第一页
‹
上一页
下一页
›
最后
»