主页
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年11月12日 15:01
There are a lot of actions, which can modify line count in editor. It's hardly possible to track all of them.If you need to track all possible cases, you might want to add a document listener (see ...
社区
IntelliJ IDEA Open API and Plugin Development
Handle editor newline creation/deletion
0 票
创建于
2018年10月09日 08:44
Events for files reopened at project opening are generated as well. You listener might not have received it because it was registered after those files were already opened. I've checked that regist...
社区
IntelliJ IDEA Open API and Plugin Development
How to listen to file open event?
0 票
创建于
2018年09月24日 10:01
I'm not saying that everyone's expectations were fulfilled, it's just there are much less users that 'hundreds' were voting for this. Hence the lower priority for the issue.
社区
IntelliJ IDEA Users
You have been ignoring hundreds of users for 12 years now.
0 票
已编辑于
2018年09月24日 09:32
You're overestimating the number of users requesting this feature. It's covered by IDEA-65007 which only has 9 votes. Other issues you mention are about different things, a lot of others are alread...
社区
IntelliJ IDEA Users
You have been ignoring hundreds of users for 12 years now.
0 票
创建于
2018年09月24日 09:17
> If it matters, my lexer returns \[Alpha] as one single token. That platform code apparently works only when the closing bracket is a separate lexer token. As an alternative solution, you can impl...
社区
IntelliJ IDEA Open API and Plugin Development
PairedBraceMatcher with escaped brackets of the for \[ ... ]
0 票
创建于
2018年09月13日 07:55
If you need a low-level handler that will process every key event, you can use IdeEventQueue.addDispatcher.
社区
IntelliJ IDEA Open API and Plugin Development
Read any key pressed.
0 票
创建于
2018年09月10日 07:30
RangeHighlighter-s don't support easy addition of tooltips, you'll need to implement showing them yourselves, by registering an editor mouse motion listener (see com.intellij.codeInsight.daemon.imp...
社区
IntelliJ IDEA Open API and Plugin Development
How to add a tooltip to a Highlighted text?
0 票
创建于
2018年09月06日 07:07
If you want to handle such situations as well, you'll need a different approach - register EditorActionHandler for backspace action (actionId=EditorBackSpace). You can check how com.intellij.codeIn...
社区
IntelliJ IDEA Open API and Plugin Development
How to delegate backspace and Enter button in TypedActionHandler?
0 票
创建于
2018年09月05日 10:03
Yes, you'll need your own implementation of EnterHandlerDelegate. Typed handlers are not invoked for Enter and Backspace.
社区
IntelliJ IDEA Open API and Plugin Development
How to delegate backspace and Enter button in TypedActionHandler?
0 票
已编辑于
2018年09月05日 09:52
There's no 'execute' method in EnterHandlerDelegate. It has its own methods you'll need to overwrite. Looks like you've added an empty implementation.
社区
IntelliJ IDEA Open API and Plugin Development
How to delegate backspace and Enter button in TypedActionHandler?
0 票
«
第一页
‹
上一页
下一页
›
最后
»