主页
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)
按最近的活动排序
最近的活动
投票数
创建于
2018年07月31日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Forcing Content Update in Custom and Default FileEditors
0 票
创建于
2018年07月26日 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()...
社区
IntelliJ IDEA Open API and Plugin Development
how to extend the editor to insert temp comment on special code line?
0 票
创建于
2018年07月13日 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 ...
社区
IntelliJ IDEA Open API and Plugin Development
How to prevent the move from the invalid FileEditorProvider?
0 票
已编辑于
2018年07月12日 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...
社区
IntelliJ IDEA Open API and Plugin Development
How to prevent the move from the invalid FileEditorProvider?
0 票
创建于
2018年07月12日 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...
社区
IntelliJ IDEA Open API and Plugin Development
How navigat from gutter to a new editor tab?
0 票
创建于
2018年06月26日 06:37
You probably need to change the implementation of 'isCollapsedByDefault' method of your folding builder class.
社区
IntelliJ IDEA Open API and Plugin Development
How to disable auto fold?
0 票
已编辑于
2018年06月22日 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...
社区
IntelliJ IDEA Open API and Plugin Development
How to get Graphics2D instance for Text Editor Content Component?
0 票
已编辑于
2018年06月22日 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...
社区
IntelliJ IDEA Open API and Plugin Development
How to get Graphics2D instance for Text Editor Content Component?
0 票
创建于
2018年06月04日 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 ...
社区
IntelliJ IDEA Open API and Plugin Development
Custom Font For Plugin File Type?
0 票
创建于
2018年06月01日 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).
社区
IntelliJ IDEA Open API and Plugin Development
Custom Font For Plugin File Type?
0 票
«
第一页
‹
上一页
下一页
›
最后
»