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
November 16, 2016 08:42
Example in the guide uses SyntaxHighlighter/SyntaxHighlighterFactory. SyntaxHighlighter's API won't allow you to do what you want (you'll need to return a separate TextAttributeKey for '=', and tha...
Community
IntelliJ IDEA Open API and Plugin Development
Ligature support for custom languages? (like PHPStorm)
0 votes
Created
November 15, 2016 13:34
That's correct. It will work wherever different styles come from - lexer or annotator (in the latter case, the effect will be asynchronous, though).
Community
IntelliJ IDEA Open API and Plugin Development
Ligature support for custom languages? (like PHPStorm)
0 votes
Created
November 15, 2016 13:13
For ligature not to apply to <= symbols, 'less-than' and 'equals' should represent tokens with different color and/or font style. Is it so in your case?
Community
IntelliJ IDEA Open API and Plugin Development
Ligature support for custom languages? (like PHPStorm)
0 votes
Created
November 15, 2016 08:25
Currently different tokens are not joined in a ligature if they are displayed in different colors or font types (regular, italic, etc) in current color scheme. There's no other language specific lo...
Community
IntelliJ IDEA Open API and Plugin Development
Ligature support for custom languages? (like PHPStorm)
0 votes
Created
November 09, 2016 07:29
'Monospaced' is a 'composite' logical font, provided by JDK, with different physical fonts used for different character sets. When line height is calculated for a composite font, JDK takes into acc...
Community
IntelliJ IDEA EAP Users
Why Does Monospaced Not Match Courier New?
0 votes
Created
October 19, 2016 08:14
You'll need to create your own version of com.intellij.codeEditor.printing.TextPainter class (see also PrintAction/PrintManager classes).
Community
IntelliJ IDEA Open API and Plugin Development
How to print folded javascript code as shown in the editor
0 votes
Created
October 13, 2016 07:53
I think you can only get an event before file is saved currently.
Community
IntelliJ IDEA Open API and Plugin Development
After Save Hooks
0 votes
Created
October 06, 2016 07:49
Check out com.intellij.openapi.fileEditor.FileDocumentManagerListener.
Community
IntelliJ IDEA Open API and Plugin Development
After Save Hooks
0 votes
Created
October 03, 2016 16:09
Make sure you have event.setDropPossible(true); in 'update' method.
Community
IntelliJ IDEA Open API and Plugin Development
Drag selected text from Editor
0 votes
Created
October 03, 2016 14:46
Make your drop target implement DnDNativeTarget (it enables drag'n'drop from sources not using DnDManager, like editor). I could find only one example of using DnDManager with JBList - com.intellij...
Community
IntelliJ IDEA Open API and Plugin Development
Drag selected text from Editor
0 votes
«
First
‹
Previous
Next
›
Last
»