Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Dmitry Batrak
Total activity
599
Last activity
June 06, 2023 09:14
Member since
December 19, 2013 17:00
Following
0 users
Followed by
1 user
Votes
0
Subscriptions
246
Activity overview
Articles (0)
Posts (0)
Comments (353)
Sort by recent activity
Recent activity
Votes
Created
November 12, 2018 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 ...
Community
IntelliJ IDEA Open API and Plugin Development
Handle editor newline creation/deletion
0 votes
Created
October 09, 2018 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...
Community
IntelliJ IDEA Open API and Plugin Development
How to listen to file open event?
0 votes
Created
September 24, 2018 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.
Community
IntelliJ IDEA Users
You have been ignoring hundreds of users for 12 years now.
0 votes
Edited
September 24, 2018 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...
Community
IntelliJ IDEA Users
You have been ignoring hundreds of users for 12 years now.
0 votes
Created
September 24, 2018 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...
Community
IntelliJ IDEA Open API and Plugin Development
PairedBraceMatcher with escaped brackets of the for \[ ... ]
0 votes
Created
September 13, 2018 07:55
If you need a low-level handler that will process every key event, you can use IdeEventQueue.addDispatcher.
Community
IntelliJ IDEA Open API and Plugin Development
Read any key pressed.
0 votes
Created
September 10, 2018 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...
Community
IntelliJ IDEA Open API and Plugin Development
How to add a tooltip to a Highlighted text?
0 votes
Created
September 06, 2018 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...
Community
IntelliJ IDEA Open API and Plugin Development
How to delegate backspace and Enter button in TypedActionHandler?
0 votes
Created
September 05, 2018 10:03
Yes, you'll need your own implementation of EnterHandlerDelegate. Typed handlers are not invoked for Enter and Backspace.
Community
IntelliJ IDEA Open API and Plugin Development
How to delegate backspace and Enter button in TypedActionHandler?
0 votes
Edited
September 05, 2018 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.
Community
IntelliJ IDEA Open API and Plugin Development
How to delegate backspace and Enter button in TypedActionHandler?
0 votes
«
First
‹
Previous
Next
›
Last
»