主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Dan Cioca
活动总数
363
最后的活动
2023年05月19日 09:38
成员加入日期
2006年12月05日 15:28
关注
0 名用户
关注者数
0 名用户
投票数
1
订阅数
122
活动概览
帖子(86)
评论(154)
按最近的活动排序
最近的活动
投票数
创建于
2007年07月23日 17:13
Well i have one ugly solution for that.Since i don't want to reimplement TextEditor and inheriting it is not possible, i simply wrap it with my fake implementation of TextEditor and use it's functi...
社区
IntelliJ IDEA Open API and Plugin Development
Multi-tabbed editor
0 票
创建于
2007年07月05日 10:37
Thanks Peter! Looks like a feasible solution.Yet, i didn't find out how to register my implementation of InsertHandler. Can you please give me some more hints? Didn't find any documentation on this...
社区
IntelliJ IDEA Open API and Plugin Development
Autopopup code completion in custom language
0 票
创建于
2007年07月09日 16:36
Hi Peter,my code-completion approach is a very dynamic implementation of PsiElement.getVariants(). Code completion is trying to suggest only variants which are applicable for the current caret pos...
社区
IntelliJ IDEA Open API and Plugin Development
Autopopup code completion in custom language
0 票
创建于
2007年07月09日 21:54
Hi Peter,have finally solved this with the editor-event api. (com.intellij.openapi.editor.event.*)Have defined and registered my own DocumentListener within my custom EditorFactoryListener. This gi...
社区
IntelliJ IDEA Open API and Plugin Development
Autopopup code completion in custom language
0 票
创建于
2007年07月13日 13:58
You may be right. I may need to review my implementation of code completion and make it more conform to the open-api specifications. But for now it is working fine with both 6.0 and 7.0, so i'll lo...
社区
IntelliJ IDEA Open API and Plugin Development
Autopopup code completion in custom language
0 票
创建于
2007年09月07日 21:00
Have found the answer myself... :)JBPopupFactory.getInstance().createActionGroupPopup(...)
社区
IntelliJ IDEA Open API and Plugin Development
How to create an ActionToolbar with visible captions (menu-like)
0 票
创建于
2007年11月15日 10:53
Thanks Dmitry.This will still leave the "Go To Line" menu entry disabled, but I think no one really uses this menu entry in our days. Hence.. it's ok to create my own action...
社区
IntelliJ IDEA Open API and Plugin Development
How to enable "Go To Line" (Ctrl+G) for non text FileEditors
0 票
创建于
2007年12月06日 13:55
Hi Mike,start with looking at ToolWindowManager. It is quite good documented. The component to display in your new tool window you have to implement yourself.Regards,Dan
社区
IntelliJ IDEA Open API and Plugin Development
How To Make ToolWindow?
0 票
创建于
2007年11月30日 15:21
what a pity!.. :)Thanks anyway!
社区
IntelliJ IDEA Open API and Plugin Development
How to enable "Search>>Find" functionality for non-text FileEditor
0 票
创建于
2008年02月26日 10:15
Module module = ModuleUtil.findModuleForPsiElement(psiFile);ModuleRootManager rootManager = ModuleRootManager.getInstance(module);VirtualFile[] contentRoots = rootManager.getContentRoots();
社区
IntelliJ IDEA Open API and Plugin Development
How to determine module relative path of a VirtualFile
0 票
«
第一页
‹
上一页
下一页
›
最后
»