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 11, 2018 08:34
Formatter cannot help directly in this case - there's no code on the empty line between braces, so there's no reason for it to introduce indent there. JavaSmartProcessor has complex logic, but in t...
Community
IntelliJ IDEA Open API and Plugin Development
Correctly indenting new line created with SmartEnterProcessor
1 vote
Created
July 31, 2018 05:59
You can try FileDocumentManger.getInstance().getDocument(myFile).setText(gson.toJson(response))
Community
IntelliJ IDEA Open API and Plugin Development
Forcing Content Update in Custom and Default FileEditors
1 vote
Created
May 16, 2018 09:53
Try to update it to the latest version (2018.1 at least, or 2018.2 EAP which has been just released). There were related platform issues that are most probably fixed there.
Community
IntelliJ IDEA Open API and Plugin Development
Intellij Chinese characters work only on Windows theme
1 vote
Edited
May 14, 2018 16:11
You can add actions to 'EditorContextBarMenu' action group (com.intellij.openapi.editor.impl.ContextMenuImpl.ACTION_GROUP) to achieve that.
Community
IntelliJ IDEA Open API and Plugin Development
Add icon to *.java files on editor view
1 vote
Created
November 29, 2017 15:55
Try getting content of the document, corresponding to your file, it should reflect the state of file represented in editor (see FileDocumentManager.getDocument).
Community
IntelliJ IDEA Open API and Plugin Development
How to get modified source code from default editor to custom editor?
1 vote
Created
September 19, 2017 10:58
You can implement whatever custom logic you want by registering an editor mouse listener (Editor.addEditorMouseMotionListener, EditorEventMulticaster.addEditorMouseMotionListener), tracking mouse p...
Community
IntelliJ IDEA Open API and Plugin Development
Custom Bubble help on mouse cursor ?
1 vote
Created
September 12, 2017 11:15
"Quick documentation" is invoked either on explicit user action (e.g. 'View->Quick Documentation' from main menu), or if user has enabled showing it on mouse hover. The latter option is available i...
Community
IntelliJ IDEA Open API and Plugin Development
Intellij Plugin - Custom Json language documentation on hover, if "type = <insert someType>"
1 vote
Created
August 31, 2017 08:59
It's not possible currently. I wonder why you need to track scrolling in your current approach. If a component is added directly as a child of editor's content component, it will be scrolled with i...
Community
IntelliJ IDEA Open API and Plugin Development
Painting over the Editor
1 vote
Created
July 13, 2017 09:37
You can use 'Split Horizontally/Vertically' to have two editors side-by-side. Such approach is used e.g. by 'Edit injected fragment' functionality - an editor for 'virtual' content is created, with...
Community
IntelliJ IDEA Open API and Plugin Development
Modify editor content before saving
1 vote
Created
May 23, 2017 08:20
I'm not sure I understand your problem exactly (some example would be great), but 'Split Line' action (invoked by Ctrl+Enter) is conceptually just Enter followed by moving caret to the end of origi...
Community
IntelliJ IDEA Open API and Plugin Development
EnterHandler and SplitLineAction
1 vote
«
First
‹
Previous
Next
›
Last
»