Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Dan Cioca
Total activity
363
Last activity
May 19, 2023 09:38
Member since
December 05, 2006 15:28
Following
0 users
Followed by
0 users
Votes
1
Subscriptions
122
Activity overview
Posts (86)
Comments (154)
Sort by recent activity
Recent activity
Votes
Created
July 23, 2007 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...
Community
IntelliJ IDEA Open API and Plugin Development
Multi-tabbed editor
0 votes
Created
July 05, 2007 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...
Community
IntelliJ IDEA Open API and Plugin Development
Autopopup code completion in custom language
0 votes
Created
July 09, 2007 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...
Community
IntelliJ IDEA Open API and Plugin Development
Autopopup code completion in custom language
0 votes
Created
July 09, 2007 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...
Community
IntelliJ IDEA Open API and Plugin Development
Autopopup code completion in custom language
0 votes
Created
July 13, 2007 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...
Community
IntelliJ IDEA Open API and Plugin Development
Autopopup code completion in custom language
0 votes
Created
September 07, 2007 21:00
Have found the answer myself... :)JBPopupFactory.getInstance().createActionGroupPopup(...)
Community
IntelliJ IDEA Open API and Plugin Development
How to create an ActionToolbar with visible captions (menu-like)
0 votes
Created
November 15, 2007 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...
Community
IntelliJ IDEA Open API and Plugin Development
How to enable "Go To Line" (Ctrl+G) for non text FileEditors
0 votes
Created
December 06, 2007 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
Community
IntelliJ IDEA Open API and Plugin Development
How To Make ToolWindow?
0 votes
Created
November 30, 2007 15:21
what a pity!.. :)Thanks anyway!
Community
IntelliJ IDEA Open API and Plugin Development
How to enable "Search>>Find" functionality for non-text FileEditor
0 votes
Created
February 26, 2008 10:15
Module module = ModuleUtil.findModuleForPsiElement(psiFile);ModuleRootManager rootManager = ModuleRootManager.getInstance(module);VirtualFile[] contentRoots = rootManager.getContentRoots();
Community
IntelliJ IDEA Open API and Plugin Development
How to determine module relative path of a VirtualFile
0 votes
«
First
‹
Previous
Next
›
Last
»