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
August 26, 2019 12:50
This is a problem with good old Swing components in JDK. Using `UIUtil.getFontWithFallback` will only get your component to the same level of font fallback support as Java's logical fonts (Monospac...
Community
IntelliJ IDEA Open API and Plugin Development
Custom editor font issues (Thai/Korean language)
2 votes
Created
October 23, 2018 14:38
To display a hint 'inside' document line, you can use a higher-level API - just implement InlayParameterHintsProvider.
Community
IntelliJ IDEA Open API and Plugin Development
Add inlay hint above method
2 votes
Created
October 23, 2018 14:35
Hello, If by 'above the method' you mean between document lines (by increasing the distance between following lines' text baselines and displaying additional content between them), such possibility...
Community
IntelliJ IDEA Open API and Plugin Development
Add inlay hint above method
2 votes
Created
July 31, 2018 06:48
What if you just don't extend TextEditorProvider? You can delegate to existing instance, if you want, provider doesn't keep any state internally. Then the order of tabs should match the order in wh...
Community
IntelliJ IDEA Open API and Plugin Development
A few questions about fileEditorProvider implementations
2 votes
Created
February 07, 2018 07:58
That's possible - e.g. Java debugger shows the values of expressions on mouse hover in editor. There's no API to attach a 'hover listener' to a TextRange. You can add mouse movement listener to an ...
Community
IntelliJ IDEA Open API and Plugin Development
How can I detect when the user hovers over or places the cursor on a text range?
2 votes
Created
May 29, 2017 12:59
This is what happens after double Ctrl press, followed by arrows, i.e. press Ctrl, release Ctrl, press Ctrl, press arrow key. This logic exists to create carets/selections above/below current line....
Community
IntelliJ IDEA Users
Editor selects text instead of moving a caret
2 votes
Created
February 02, 2016 11:03
In Swing, graphics object is passed as a parameter to 'paintComponent' method. You can read the source code or debug the invocation of 'paintComponent' in EditorComponentImpl class to see the detai...
Community
IntelliJ IDEA Open API and Plugin Development
Draw shapes in Editor
2 votes
Created
July 12, 2019 06:21
That's because there can be multiple editors for the same document. If you are interested in all editors, you can get them via EditorFactory.getInstance().getEditors(document) If you are interested...
Community
IntelliJ IDEA Open API and Plugin Development
Smart brace completion results in incorrect caret data
1 vote
Created
December 03, 2018 08:10
It means character offset in document, inlay is 'attached' to. If the document isn't changing, and soft wraps are not used, any offset for a document line can be used (i.e. from document.getLineSta...
Community
IntelliJ IDEA Open API and Plugin Development
InlayModel.addBlockElement() offset parameter
1 vote
Created
November 22, 2018 08:13
Answered in the ticket.
Community
IntelliJ IDEA Open API and Plugin Development
Do I need to do anything special to have multi-line TODO comments work for line comments in my custom language?
1 vote
Next
›
Last
»