主页
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)
按最近的活动排序
最近的活动
投票数
创建于
2016年10月03日 13:25
It will work in the desired way, if your drop target will be implemented using com.intellij.ide.dnd.DnDManager. See 'registerTarget' method in particular.
社区
IntelliJ IDEA Open API and Plugin Development
Drag selected text from Editor
0 票
创建于
2016年10月03日 08:53
See com.intellij.openapi.fileEditor.FileDocumentManagerListener and its usages in IDEA CE codebase. I'm not sure how easy it's to change the contents at file loading/saving though.
社区
IntelliJ IDEA Open API and Plugin Development
How can I change document content when user is saving/open a document?
0 票
创建于
2016年09月26日 09:35
Please provide a minimal project where the issue can be reproduced.
社区
IntelliJ IDEA Open API and Plugin Development
Undo unavalaible after a replaceString()
0 票
创建于
2016年09月26日 08:52
Try also to invoke 'close' outside of command/write action.
社区
IntelliJ IDEA Open API and Plugin Development
Undo unavalaible after a replaceString()
0 票
创建于
2016年09月23日 16:00
Try passing something unique as a groupId to executeCommand method. E.g. DocCommandGroupId.noneGroupId(modifiedDocument).
社区
IntelliJ IDEA Open API and Plugin Development
Undo unavalaible after a replaceString()
0 票
创建于
2016年09月22日 09:26
There should be only one document change event (reported to listeners registered via Document.addDocumentListener) per character entered. Make sure you register only one listener or register it onl...
社区
IntelliJ IDEA Open API and Plugin Development
DocumentEvent and PsiTreeChangeEvent fired many times
0 票
创建于
2016年09月02日 14:32
正式评论
Ticket for this issue is https://youtrack.jetbrains.com/issue/IDEA-156973. IDEA-159901 only happens when there are problems with font installation.
社区
IntelliJ IDEA EAP Users
Fira code font on windows 10
0 票
创建于
2016年09月01日 12:20
You can register an EditorActionHandler for "EditorCopy" action. In it you can detect whether it's invoked in your context and perform any required actions. If it's invoked in other context, you sh...
社区
IntelliJ IDEA Open API and Plugin Development
Trying to replace COPY_HANDLER for an editor
0 票
创建于
2016年09月01日 08:02
Could you please give more details about what you're trying to achieve? Maybe registering CopyPastePostProcessor or CopyPastePreProcessor (namings are a bit obscure) can solve your problem.
社区
IntelliJ IDEA Open API and Plugin Development
Trying to replace COPY_HANDLER for an editor
0 票
创建于
2016年08月25日 12:09
TypedActionHandler only can process what is considered as typing by editor - i.e. keypresses which are not mapped to actions. To process those as well, you can register you custom handlers for spec...
社区
IntelliJ IDEA Open API and Plugin Development
What is the way to catch events about system keys
0 票
«
第一页
‹
上一页
下一页
›
最后
»