主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
简体中文
English (United States)
登录
Dmitry Batrak
活动总数
599
最后的活动
2023年06月06日 09:14
成员加入日期
2013年12月19日 17:00
关注
0 名用户
关注者数
1 名用户
投票数
0
订阅数
246
活动概览
文章(0)
帖子(0)
评论(353)
按最近的活动排序
最近的活动
投票数
创建于
2018年09月05日 09:45
What is the specific problem you have with those new extension points?
社区
IntelliJ IDEA Open API and Plugin Development
How to delegate backspace and Enter button in TypedActionHandler?
0 票
创建于
2018年09月05日 07:27
For Enter and Backspace there are separate extension points - see EnterHandlerDelegate and BackspaceHandlerDelegate.
社区
IntelliJ IDEA Open API and Plugin Development
How to delegate backspace and Enter button in TypedActionHandler?
0 票
创建于
2018年08月28日 13:43
As 'setupHandler'/'setupRawHandler' javadoc mentions, you need to delegate to the previously registered handler. Just call 'myOriginalHandler.execute(...)' from within your 'execute' method. TypedH...
社区
IntelliJ IDEA Open API and Plugin Development
Why I can't see what I type?
0 票
创建于
2018年08月28日 12:47
You can try using 'setupRawHandler' instead of 'setupHandler' to avoid exception.
社区
IntelliJ IDEA Open API and Plugin Development
Why I can't see what I type?
0 票
创建于
2018年08月28日 12:45
What two problems do you mean? Are you still getting an exception? Please post its stacktrace. As for typing, you still override default TypedActionHandler and not delegate typing to it.
社区
IntelliJ IDEA Open API and Plugin Development
Why I can't see what I type?
0 票
创建于
2018年08月28日 11:40
As for the error, you shouldn't wrap 'showMessageDialog' call into WriteCommandAction, just invoke it directly in your typed handler's 'execute' method. If you also want to preserve existing typing...
社区
IntelliJ IDEA Open API and Plugin Development
Why I can't see what I type?
0 票
已编辑于
2018年08月28日 07:37
Have you tried to debug it? Does the execution come at all to MyTypedHandler.execute method?Have you registered you handler (see static block of code in EditorIllustration class in the tutorial for...
社区
IntelliJ IDEA Open API and Plugin Development
Why I can't see what I type?
0 票
创建于
2018年08月28日 07:22
Yes, you can add e.g. the first listener in the 'projectOpened' method of your ProjectComponent.
社区
IntelliJ IDEA Open API and Plugin Development
Displaying a dialog box when the editor content is changed
0 票
创建于
2018年07月31日 06:28
Maybe you just need to reload your panel, when document contents changes? You can listen to changes in document - see Document.addDocumentListener
社区
IntelliJ IDEA Open API and Plugin Development
Forcing Content Update in Custom and Default FileEditors
0 票
创建于
2018年07月31日 06:20
Try getting the content from the document, not from the file.
社区
IntelliJ IDEA Open API and Plugin Development
Forcing Content Update in Custom and Default FileEditors
0 票
«
第一页
‹
上一页
下一页
›
最后
»