主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
简体中文
English (United States)
登录
Dmitry Batrak
活动总数
599
最后的活动
2023年06月06日 09:14
成员加入日期
2013年12月19日 17:00
关注
0 名用户
关注者数
1 名用户
投票数
0
订阅数
246
活动概览
文章(0)
帖子(0)
评论(353)
按最近的活动排序
最近的活动
投票数
创建于
2016年11月16日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Ligature support for custom languages? (like PHPStorm)
0 票
创建于
2016年11月15日 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).
社区
IntelliJ IDEA Open API and Plugin Development
Ligature support for custom languages? (like PHPStorm)
0 票
创建于
2016年11月15日 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?
社区
IntelliJ IDEA Open API and Plugin Development
Ligature support for custom languages? (like PHPStorm)
0 票
创建于
2016年11月15日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Ligature support for custom languages? (like PHPStorm)
0 票
创建于
2016年11月09日 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...
社区
IntelliJ IDEA EAP Users
Why Does Monospaced Not Match Courier New?
0 票
创建于
2016年10月19日 08:14
You'll need to create your own version of com.intellij.codeEditor.printing.TextPainter class (see also PrintAction/PrintManager classes).
社区
IntelliJ IDEA Open API and Plugin Development
How to print folded javascript code as shown in the editor
0 票
创建于
2016年10月13日 07:53
I think you can only get an event before file is saved currently.
社区
IntelliJ IDEA Open API and Plugin Development
After Save Hooks
0 票
创建于
2016年10月06日 07:49
Check out com.intellij.openapi.fileEditor.FileDocumentManagerListener.
社区
IntelliJ IDEA Open API and Plugin Development
After Save Hooks
0 票
创建于
2016年10月03日 16:09
Make sure you have event.setDropPossible(true); in 'update' method.
社区
IntelliJ IDEA Open API and Plugin Development
Drag selected text from Editor
0 票
创建于
2016年10月03日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Drag selected text from Editor
0 票
«
第一页
‹
上一页
下一页
›
最后
»