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
December 21, 2016 11:47
You can try to wrap it in your own command - only top-level command should matter.
Community
IntelliJ IDEA Open API and Plugin Development
Undo programmatically
0 votes
Created
December 21, 2016 11:29
Thanks. Sorry, I didn't look at this in details myself first. It turns out it's not possible currently to display folding anchors for a folding region located completely inside one visual line. The...
Community
IntelliJ IDEA Open API and Plugin Development
FoldingBuilder behavior for single line
0 votes
Created
December 21, 2016 09:19
Can you debug the following method to see why your folding region is not picked: com.intellij.openapi.editor.impl.EditorGutterComponentImpl#doPaintFoldingTree It's possible that explicit editor rep...
Community
IntelliJ IDEA Open API and Plugin Development
FoldingBuilder behavior for single line
0 votes
Created
December 21, 2016 08:46
Yes, it won't be so straightforward. Probably you can try setting it for all editors corresponding to a given document, obtained via com.intellij.openapi.editor.EditorFactory#getEditors(com.intelli...
Community
IntelliJ IDEA Open API and Plugin Development
FoldingBuilder behavior for single line
0 votes
Created
December 21, 2016 08:06
It's possible to make single-line folding regions have folding anchor displayed in editor by calling editor.getSettings().setAllowSingleLogicalLineFolding(true)
Community
IntelliJ IDEA Open API and Plugin Development
FoldingBuilder behavior for single line
0 votes
Created
December 20, 2016 15:33
Maybe com.intellij.ui.EditorTextFieldCellRenderer can help you. If you're looking for the actual code that does font fallback - it's in com.intellij.openapi.editor.impl.ComplementaryFontsRegistry.
Community
IntelliJ IDEA Open API and Plugin Development
How can I render CJK characters properly in JBTable?
0 votes
Edited
December 20, 2016 14:19
You've described it correctly (with some platform-dependent caveats, but on Windows it's like that). I don't think I know a font that I can recommend in this case - as you say, a specific Korean fo...
Community
IntelliJ IDEA Open API and Plugin Development
How can I render CJK characters properly in JBTable?
0 votes
Created
December 20, 2016 08:36
Editor has font fallback mechanism - when user-chosen font cannot display some character, other font will be used. Swing text components don't have that. The only solutions currently are either usi...
Community
IntelliJ IDEA Open API and Plugin Development
How can I render CJK characters properly in JBTable?
0 votes
Created
December 05, 2016 08:11
Maybe com.intellij.openapi.actionSystem.ActionPromoter can help.
Community
IntelliJ IDEA Open API and Plugin Development
What happens when multiple plugins register a custom shortcut to the same component?
0 votes
Created
December 02, 2016 07:32
You need another Application class - com.intellij.openapi.application.Application, usually accessed like this: ApplicationManager.getApplication().invokeLater(...)
Community
IntelliJ IDEA Open API and Plugin Development
Application.application == null
0 votes
«
First
‹
Previous
Next
›
Last
»