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
September 05, 2018 09:45
What is the specific problem you have with those new extension points?
Community
IntelliJ IDEA Open API and Plugin Development
How to delegate backspace and Enter button in TypedActionHandler?
0 votes
Created
September 05, 2018 07:27
For Enter and Backspace there are separate extension points - see EnterHandlerDelegate and BackspaceHandlerDelegate.
Community
IntelliJ IDEA Open API and Plugin Development
How to delegate backspace and Enter button in TypedActionHandler?
0 votes
Created
August 28, 2018 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...
Community
IntelliJ IDEA Open API and Plugin Development
Why I can't see what I type?
0 votes
Created
August 28, 2018 12:47
You can try using 'setupRawHandler' instead of 'setupHandler' to avoid exception.
Community
IntelliJ IDEA Open API and Plugin Development
Why I can't see what I type?
0 votes
Created
August 28, 2018 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.
Community
IntelliJ IDEA Open API and Plugin Development
Why I can't see what I type?
0 votes
Created
August 28, 2018 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...
Community
IntelliJ IDEA Open API and Plugin Development
Why I can't see what I type?
0 votes
Edited
August 28, 2018 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...
Community
IntelliJ IDEA Open API and Plugin Development
Why I can't see what I type?
0 votes
Created
August 28, 2018 07:22
Yes, you can add e.g. the first listener in the 'projectOpened' method of your ProjectComponent.
Community
IntelliJ IDEA Open API and Plugin Development
Displaying a dialog box when the editor content is changed
0 votes
Created
July 31, 2018 06:28
Maybe you just need to reload your panel, when document contents changes? You can listen to changes in document - see Document.addDocumentListener
Community
IntelliJ IDEA Open API and Plugin Development
Forcing Content Update in Custom and Default FileEditors
0 votes
Created
July 31, 2018 06:20
Try getting the content from the document, not from the file.
Community
IntelliJ IDEA Open API and Plugin Development
Forcing Content Update in Custom and Default FileEditors
0 votes
«
First
‹
Previous
Next
›
Last
»