主页
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)
按最近的活动排序
最近的活动
投票数
创建于
2014年08月14日 13:00
LightPlatformCodeInsightFixtureTestCase by default executes test code in a WriteCommandAction, so your command (becoming recursive command) is ignored - that's why undo doesn't work. This problem c...
社区
IntelliJ IDEA Open API and Plugin Development
How to test with UndoManager
0 票
创建于
2014年10月08日 06:55
For Java it's done using custom CopyPastePostProcessor implementation (JavaCopyPasteReferenceProcessor) - an entity which can extract additional data from source on copy and apply them to target on...
社区
IntelliJ IDEA Open API and Plugin Development
on Paste code - suggest imports(custom lang implementation)
0 票
创建于
2014年10月09日 07:43
Yes, just like any extension is added - seehttps://confluence.jetbrains.com/display/IDEADEV/IntelliJ+IDEA+Plugin+Structure#IntelliJIDEAPluginStructure-PluginExtensions.You don't need to extend Copy...
社区
IntelliJ IDEA Open API and Plugin Development
on Paste code - suggest imports(custom lang implementation)
0 票
创建于
2014年10月06日 13:28
Try to use OpenFileDescriptor.navigateInEditor(...) method.
社区
IntelliJ IDEA Open API and Plugin Development
Is it possible to specify default editor?
0 票
创建于
2014年10月07日 09:59
This should work.You can also just check whether file.getFileType() is FileTypes.UNKNOWN, and if it is, do the manual type override as you do.
社区
IntelliJ IDEA Open API and Plugin Development
Is it possible to specify default editor?
0 票
创建于
2014年10月06日 13:13
You should implement com.intellij.codeInsight.editorActions.smartEnter.SmartEnterProcessor for your language
社区
IntelliJ IDEA Open API and Plugin Development
Custom language: Complete statement(Ctrl-Shift-Enter)
0 票
创建于
2014年10月06日 13:17
It's better to work with action instances directly - you can get registered actions from ActionManager instance. If you need to work with shortcuts, check KeymapManager and Keymap classes, they pro...
社区
IntelliJ IDEA Open API and Plugin Development
Invoking menu actions using java.awt.Robot
0 票
创建于
2014年10月29日 07:27
That exception is thrown when you try to invoke CaretModel.runForEachCaret method recursively. So the piece of your code must be already executing in the context of on runForEachCaret invocation (f...
社区
IntelliJ IDEA Open API and Plugin Development
Multicaret problems
0 票
创建于
2014年10月17日 08:22
I think implementing and registering a com.intellij.openapi.fileEditor.FileEditorProvider instance for metadata editor should solve your problem.
社区
IntelliJ IDEA Open API and Plugin Development
Two files but only one editor with two editor tabs
0 票
创建于
2014年12月03日 07:12
Looks like your FileEditor instance reports that it is not valid right after it has been created by your FileEditorProvider instance. You can check yourself by debugging FileEditorManagerImpl.openF...
社区
IntelliJ IDEA Open API and Plugin Development
Error creating an editor window
0 票
«
第一页
‹
上一页
下一页
›
最后
»