主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Aleksey Pivovarov
活动总数
801
最后的活动
2024年09月23日 14:52
成员加入日期
2013年08月06日 15:41
关注
0 名用户
关注者数
0 名用户
投票数
0
订阅数
444
活动概览
文章(0)
帖子(0)
评论(357)
按最近的活动排序
最近的活动
投票数
创建于
2016年03月18日 11:51
Could you clarify, why do you need read-only Document? If you need it to show read-only Editor, you can use EditorFactory.createViewer() instead of EditorFactory.createEditor(). If this document sh...
社区
IntelliJ IDEA Open API and Plugin Development
Read only mode for document
0 票
创建于
2016年03月18日 13:29
I'm not sure if I got your question right, but you might want to pass DiffUserDataKeys.FORCE_READ_ONLY or DiffUserDataKeys.FORCE_READ_ONLY_CONTENTS key to the request. Example: https://github.com/J...
社区
IntelliJ IDEA Open API and Plugin Development
Read only mode for document
0 票
创建于
2016年03月18日 18:23
Yes. This is regular Editor with disabled editing actions.
社区
IntelliJ IDEA Open API and Plugin Development
Read only mode for document
0 票
创建于
2016年03月21日 09:16
AnAction can have multiple presentations (ex: being added to multiple toolbars simultaneously). They can be accessed with AnActionEvent.getPresentation() in update()/actionPerformed() actions. You ...
社区
IntelliJ IDEA Open API and Plugin Development
Enabling/Disabling a menu item
0 票
创建于
2016年03月21日 09:39
> but that does not seem the most suitable way to do it as per my problem. Why do you think so? If the issue is with "too slow" reaction time, ActionToolbar.updateActionsImmediately() might help. ...
社区
IntelliJ IDEA Open API and Plugin Development
Enabling/Disabling a menu item
0 票
创建于
2016年03月24日 09:37
Probably, you should use `projectConfigurable` instead of `applicationConfigurable`, because PMDProjectComponent has "Project" as one of its constructor's parameters.
社区
IntelliJ IDEA Open API and Plugin Development
IDEA 2016.1 change in settings
0 票
创建于
2016年03月28日 09:53
You can use at Keymap.Listener and KeymapManagerListener.
社区
IntelliJ IDEA Open API and Plugin Development
How to detect that a shortcut has been changed?
0 票
创建于
2015年06月04日 09:28
Hi,You can't do it now.In Idea 15 there'll be added a group "Diff.EditorPopupMenu".P.S. If you want it badly, in 14.1 you can implement your own DiffTool, overriding TextDiffViewer.createEditorPopu...
社区
IntelliJ IDEA Open API and Plugin Development
editor popup menu
0 票
创建于
2015年12月28日 18:41
Hi, You can add your action to the "VcsHistoryActionsGroup" action group.This can be done by addind smth like this to the plugin.xml:<action id="SomePluginActionID" text="Do Smth"> <add-to-grou...
社区
IntelliJ IDEA Open API and Plugin Development
Add additional action to FileHistoryPanelImpl WITHOUT own VcsProvider
0 票
创建于
2016年01月11日 10:09
You can take a look at DialogWrapper.setErrorText()You can override DialogWrapper.doOKAction() to smth like this:@Overrideprotected void doOKAction() { if (isDataValid()) { super.doOKAction(); ...
社区
IntelliJ IDEA Open API and Plugin Development
popup field
0 票
«
第一页
‹
上一页
下一页
›
最后
»