主页
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)
按最近的活动排序
最近的活动
投票数
已编辑于
2017年05月22日 08:52
There's no API to get that information currently. It can be calculated as follows: int y = editor.visualPositionToXY(...).y;FontMetrics fm = editor.getFontMetrics(Font.PLAIN);int caretTop = y - fm....
社区
IntelliJ IDEA Open API and Plugin Development
How do I get the highest point of a caret located at an offset?
1 票
创建于
2017年04月23日 09:10
What you see in UI is what your FileEditor returns from 'getComponent()' method. If I understood correctly, you just return 'new JPanel()' from it, and you see empty panel in UI. That looks like an...
社区
IntelliJ IDEA Open API and Plugin Development
Building a custom editor
1 票
创建于
2017年03月17日 09:12
Are you sure that project you're using to create EditorTextField matches the project, where tool window is added? Try to put a breakpoint into EditorImpl.release() and see the stack trace causing e...
社区
IntelliJ IDEA Open API and Plugin Development
EditorTextFields being disposed across all open projects when one project closed
1 票
创建于
2016年12月21日 15:45
This usually works for simple text editing actions. For actions or commands marked as 'global' (com.intellij.openapi.command.undo.UndoableAction#isGlobal, com.intellij.openapi.command.CommandProces...
社区
IntelliJ IDEA Open API and Plugin Development
Undo programmatically
1 票
创建于
2016年12月20日 09:21
If your commands specify the same groupId, they will be undone in one step.
社区
IntelliJ IDEA Open API and Plugin Development
Undo programmatically
1 票
创建于
2016年12月19日 09:11
The answer to a) - try using 'order' attribute (with 'first' or 'last' value) when registering your FoldingBuilder extension.
社区
IntelliJ IDEA Open API and Plugin Development
Overriding FoldingDescriptors [SOLVED]
1 票
创建于
2016年11月23日 07:05
Try to debug com.intellij.codeInsight.editorActions.TypedHandler#handleQuote method while typing a quote in HTL content.
社区
IntelliJ IDEA Open API and Plugin Development
Quote handler in template language
1 票
创建于
2014年07月14日 08:40
Settings -> Editor -> Appearance -> Show vertical indent guides
社区
IntelliJ IDEA Users
How to enable line linking 2 braces?
1 票
创建于
2016年02月20日 10:29
ActionManager.addAnActionListener() can also help
社区
IntelliJ IDEA Open API and Plugin Development
[Question] is there any way to get edit document action?
1 票
创建于
2015年06月03日 07:59
You'll need to implement ActiveGutterRenderer to do that. You can take existing implementations as examples.
社区
IntelliJ IDEA Open API and Plugin Development
Vertical linemarker in Editor
1 票
«
第一页
‹
上一页
下一页
›
最后
»