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
October 03, 2016 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.
Community
IntelliJ IDEA Open API and Plugin Development
Drag selected text from Editor
0 votes
Created
October 03, 2016 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.
Community
IntelliJ IDEA Open API and Plugin Development
How can I change document content when user is saving/open a document?
0 votes
Created
September 26, 2016 09:35
Please provide a minimal project where the issue can be reproduced.
Community
IntelliJ IDEA Open API and Plugin Development
Undo unavalaible after a replaceString()
0 votes
Created
September 26, 2016 08:52
Try also to invoke 'close' outside of command/write action.
Community
IntelliJ IDEA Open API and Plugin Development
Undo unavalaible after a replaceString()
0 votes
Created
September 23, 2016 16:00
Try passing something unique as a groupId to executeCommand method. E.g. DocCommandGroupId.noneGroupId(modifiedDocument).
Community
IntelliJ IDEA Open API and Plugin Development
Undo unavalaible after a replaceString()
0 votes
Created
September 22, 2016 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...
Community
IntelliJ IDEA Open API and Plugin Development
DocumentEvent and PsiTreeChangeEvent fired many times
0 votes
Created
September 02, 2016 14:32
Official comment
Ticket for this issue is https://youtrack.jetbrains.com/issue/IDEA-156973. IDEA-159901 only happens when there are problems with font installation.
Community
IntelliJ IDEA EAP Users
Fira code font on windows 10
0 votes
Created
September 01, 2016 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...
Community
IntelliJ IDEA Open API and Plugin Development
Trying to replace COPY_HANDLER for an editor
0 votes
Created
September 01, 2016 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.
Community
IntelliJ IDEA Open API and Plugin Development
Trying to replace COPY_HANDLER for an editor
0 votes
Created
August 25, 2016 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...
Community
IntelliJ IDEA Open API and Plugin Development
What is the way to catch events about system keys
0 votes
«
First
‹
Previous
Next
›
Last
»