主页
IDEs Support (IntelliJ Platform) | JetBrains
提交请求
社区
登录
Denys Dushyn
关注
新帖子
新帖子和评论
活动总数
19
最后的活动
2016年01月16日 14:45
成员加入日期
2011年06月14日 13:29
关注
0 名用户
关注者数
0 名用户
投票数
0
订阅数
8
活动概览
帖子(2)
评论(9)
按最近的活动排序
最近的活动
投票数
创建于
2013年06月20日 13:17
Hello, Hikaru.Try to explore the following classes:PsiManager.findFile(VirtualFile file)PsiJavaFile.getClasses()
社区
IntelliJ IDEA Open API and Plugin Development
How do I get method list from PsiFile or VirtualFile?
0 票
创建于
2013年06月19日 14:34
Hello, Konstantin.For PSI tree changes you can try to use PsiManager.addPsiTreeChangeListener(PsiTreeChangeListener listener)Platform has an adapter for PsiTreeChangeListener -- PsiTreeChangeAdapte...
社区
IntelliJ IDEA Open API and Plugin Development
How do I react to PSI Tree changes?
0 票
创建于
2013年06月19日 12:41
Hi, Chris.For writing actions that may be accessed after pressing Ctrl+Enter you should use IntentionAction and IntentionManager classes.Community version of IDEA contains a lot of examples how to ...
社区
IntelliJ IDEA Open API and Plugin Development
How to provide actions for Alt + Enter functionality?
0 票
创建于
2013年06月19日 08:38
Hello,You can use JavaDirectoryService class. The class has several methods that allows you to create a java class in a given directoryJavaDirectoryService.createClass(PsiDirectory dir, String name...
社区
IntelliJ IDEA Open API and Plugin Development
Creating a new class
0 票
创建于
2013年06月17日 07:44
Hello, Alan.Try to extends your psi element with com.intellij.psi.ContributedReferenceHost interface. And implement method getReferences, for example as following.@NotNull public PsiReference[] ge...
社区
IntelliJ IDEA Open API and Plugin Development
custom language PsiReferenceContributor to DomElement
0 票
创建于
2013年05月23日 13:02
Thank you, Yann.It really helped me :)
社区
IntelliJ IDEA Open API and Plugin Development
Syntax highlighting in different editor color schems
0 票
创建于
2012年12月06日 14:21
Is it eligible for me to make a plugin for workinng with JSP files? Won't I violate any restrictions?
社区
IntelliJ IDEA Open API and Plugin Development
JSP open API
0 票
创建于
2011年06月14日 14:08
Some times ago I needed only syntax highlighting and found pretty small plugin with such kind of functionality. Try to look at code -- http://code.google.com/p/idea-assemblysupport/
社区
IntelliJ IDEA Open API and Plugin Development
Source for simple language plugin
0 票
创建于
2011年06月14日 13:29
Hello, Sergiy Dubovik.For simple highlighting purposes I use SyntaxHighlighterFactory.LANGUAGE_FACTORY.addExplicitExtension method.As a parameters It excepts Language instance for what you want to...
社区
IntelliJ IDEA Open API and Plugin Development
Source for simple language plugin
0 票