主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Dan Cioca
活动总数
363
最后的活动
2023年05月19日 09:38
成员加入日期
2006年12月05日 15:28
关注
0 名用户
关注者数
0 名用户
投票数
1
订阅数
122
活动概览
帖子(86)
评论(154)
按最近的活动排序
最近的活动
投票数
创建于
2006年12月05日 17:45
Thanks Sascha! What's the scope of the analyzer? Is it the current document or all currently opened documents?And what non-openAPI jar is containing it?btw... found http://intellij.net/forums/threa...
社区
IntelliJ IDEA Open API and Plugin Development
How to trigger annotator without changing file?
0 票
创建于
2006年12月05日 18:18
idea.jar was already in my library list. spelling of ..Analyzer was wrong (..Analiser) :)Thanks a lot! This works. It looks like it annotates only the current file, and this is exactly what I neede...
社区
IntelliJ IDEA Open API and Plugin Development
How to trigger annotator without changing file?
0 票
创建于
2006年12月05日 18:51
... was wrong... :( this is resetting the annotators. The current editor is re-annotated and all other editors will be annotated when made current. Found a more "lighter" method that serves my purp...
社区
IntelliJ IDEA Open API and Plugin Development
How to trigger annotator without changing file?
0 票
创建于
2007年03月20日 00:59
Found the answer to my question.. For the record:... :)Processes which need UI interaction (similar to my progress indicator) need to be started in an EventQueue thread.e.g. EventQueue.invokeAndWai...
社区
IntelliJ IDEA Open API and Plugin Development
Trigger progress indicator within Daemon code analyzer (ProgressManager)
0 票
创建于
2007年05月11日 10:35
Thanks Hugo!i did read again your first explanation and finally understood how it is supposed to work. If i define two file editor providers for the same file, than i can expect that ij is showing ...
社区
IntelliJ IDEA Open API and Plugin Development
Multi-tabbed editor
0 票
创建于
2007年07月22日 17:07
Hi Hugo,one more thing. How can i rename the tabs of the multitabbed editor?I am using for both Spec and Body the same type of editor, which is TextEditor.The tabs are both showing the name "Text" ...
社区
IntelliJ IDEA Open API and Plugin Development
Multi-tabbed editor
0 票
创建于
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 票
«
第一页
‹
上一页
下一页
›
最后
»