主页
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年10月11日 08:34
Formatter cannot help directly in this case - there's no code on the empty line between braces, so there's no reason for it to introduce indent there. JavaSmartProcessor has complex logic, but in t...
社区
IntelliJ IDEA Open API and Plugin Development
Correctly indenting new line created with SmartEnterProcessor
1 票
创建于
2018年07月31日 05:59
You can try FileDocumentManger.getInstance().getDocument(myFile).setText(gson.toJson(response))
社区
IntelliJ IDEA Open API and Plugin Development
Forcing Content Update in Custom and Default FileEditors
1 票
创建于
2018年05月16日 09:53
Try to update it to the latest version (2018.1 at least, or 2018.2 EAP which has been just released). There were related platform issues that are most probably fixed there.
社区
IntelliJ IDEA Open API and Plugin Development
Intellij Chinese characters work only on Windows theme
1 票
已编辑于
2018年05月14日 16:11
You can add actions to 'EditorContextBarMenu' action group (com.intellij.openapi.editor.impl.ContextMenuImpl.ACTION_GROUP) to achieve that.
社区
IntelliJ IDEA Open API and Plugin Development
Add icon to *.java files on editor view
1 票
创建于
2017年11月29日 15:55
Try getting content of the document, corresponding to your file, it should reflect the state of file represented in editor (see FileDocumentManager.getDocument).
社区
IntelliJ IDEA Open API and Plugin Development
How to get modified source code from default editor to custom editor?
1 票
创建于
2017年09月19日 10:58
You can implement whatever custom logic you want by registering an editor mouse listener (Editor.addEditorMouseMotionListener, EditorEventMulticaster.addEditorMouseMotionListener), tracking mouse p...
社区
IntelliJ IDEA Open API and Plugin Development
Custom Bubble help on mouse cursor ?
1 票
创建于
2017年09月12日 11:15
"Quick documentation" is invoked either on explicit user action (e.g. 'View->Quick Documentation' from main menu), or if user has enabled showing it on mouse hover. The latter option is available i...
社区
IntelliJ IDEA Open API and Plugin Development
Intellij Plugin - Custom Json language documentation on hover, if "type = <insert someType>"
1 票
创建于
2017年08月31日 08:59
It's not possible currently. I wonder why you need to track scrolling in your current approach. If a component is added directly as a child of editor's content component, it will be scrolled with i...
社区
IntelliJ IDEA Open API and Plugin Development
Painting over the Editor
1 票
创建于
2017年07月13日 09:37
You can use 'Split Horizontally/Vertically' to have two editors side-by-side. Such approach is used e.g. by 'Edit injected fragment' functionality - an editor for 'virtual' content is created, with...
社区
IntelliJ IDEA Open API and Plugin Development
Modify editor content before saving
1 票
创建于
2017年05月23日 08:20
I'm not sure I understand your problem exactly (some example would be great), but 'Split Line' action (invoked by Ctrl+Enter) is conceptually just Enter followed by moving caret to the end of origi...
社区
IntelliJ IDEA Open API and Plugin Development
EnterHandler and SplitLineAction
1 票
«
第一页
‹
上一页
下一页
›
最后
»