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
July 31, 2018 05:51
Default text editor makes changes to a Document instance. That instance generates change events, which can be processed by another editor to update its view. Default text editor also will update it...
Community
IntelliJ IDEA Open API and Plugin Development
Forcing Content Update in Custom and Default FileEditors
0 votes
Created
July 26, 2018 08:11
You can use either use a line-extension editor API (EditorEx#registerLineExtensionPainter, EditorLinePainter) to display additional text after line ends, or inlay editor API (Editor.getInlayModel()...
Community
IntelliJ IDEA Open API and Plugin Development
how to extend the editor to insert temp comment on special code line?
0 votes
Created
July 13, 2018 09:03
I don't think you'll be able to implement your logic in 'deselectNotify' - it's called when tab switching is already decided. You'll need to do that earlier. FileEditorManager.getCurrentWindow and ...
Community
IntelliJ IDEA Open API and Plugin Development
How to prevent the move from the invalid FileEditorProvider?
0 votes
Edited
July 12, 2018 11:55
There's no API for that. This can probably be implemented after getting a reference to corresponding JBTabs instance (using getTabAt(index).setEnabled(false) or setSelectionChangeHandler). But that...
Community
IntelliJ IDEA Open API and Plugin Development
How to prevent the move from the invalid FileEditorProvider?
0 votes
Created
July 12, 2018 09:14
In your GutterIconRenderer you can implement 'getClickAction' to perform arbitrary action when user clicks on corresponding icon. When you need to open a new tab, you generally invoke some 'open' m...
Community
IntelliJ IDEA Open API and Plugin Development
How navigat from gutter to a new editor tab?
0 votes
Created
June 26, 2018 06:37
You probably need to change the implementation of 'isCollapsedByDefault' method of your folding builder class.
Community
IntelliJ IDEA Open API and Plugin Development
How to disable auto fold?
0 votes
Edited
June 22, 2018 11:13
JDK already uses ClearType rendering when LCD anti-aliasing is requested on Windows. Right now its implemented via GDI, there's a ticket in our tracker to add support for DirectWrite (https://youtr...
Community
IntelliJ IDEA Open API and Plugin Development
How to get Graphics2D instance for Text Editor Content Component?
0 votes
Edited
June 22, 2018 08:31
For your code snippet, Graphics instance you get from safelyGetGraphics is just null, so naturally it's not an instance of Graphics2D. When it's not null, it's usually can be cast to Graphics2D. An...
Community
IntelliJ IDEA Open API and Plugin Development
How to get Graphics2D instance for Text Editor Content Component?
0 votes
Created
June 04, 2018 07:46
There are multiple options you can try. One is FileEditorManagerListener.fileOpenedSync (appeared in master branch recently, should be available in 2018.2 release, or a bit less convenient in this ...
Community
IntelliJ IDEA Open API and Plugin Development
Custom Font For Plugin File Type?
0 votes
Created
June 01, 2018 12:07
We don't bundle DejaVu Sans Mono, we use it as a default font, if it's installed on user's machine (on Linux).
Community
IntelliJ IDEA Open API and Plugin Development
Custom Font For Plugin File Type?
0 votes
«
First
‹
Previous
Next
›
Last
»