Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Aleksey Pivovarov
Total activity
801
Last activity
September 23, 2024 14:52
Member since
August 06, 2013 15:41
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
444
Activity overview
Articles (0)
Posts (0)
Comments (357)
Sort by recent activity
Recent activity
Votes
Created
March 18, 2016 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...
Community
IntelliJ IDEA Open API and Plugin Development
Read only mode for document
0 votes
Created
March 18, 2016 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...
Community
IntelliJ IDEA Open API and Plugin Development
Read only mode for document
0 votes
Created
March 18, 2016 18:23
Yes. This is regular Editor with disabled editing actions.
Community
IntelliJ IDEA Open API and Plugin Development
Read only mode for document
0 votes
Created
March 21, 2016 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 ...
Community
IntelliJ IDEA Open API and Plugin Development
Enabling/Disabling a menu item
0 votes
Created
March 21, 2016 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. ...
Community
IntelliJ IDEA Open API and Plugin Development
Enabling/Disabling a menu item
0 votes
Created
March 24, 2016 09:37
Probably, you should use `projectConfigurable` instead of `applicationConfigurable`, because PMDProjectComponent has "Project" as one of its constructor's parameters.
Community
IntelliJ IDEA Open API and Plugin Development
IDEA 2016.1 change in settings
0 votes
Created
March 28, 2016 09:53
You can use at Keymap.Listener and KeymapManagerListener.
Community
IntelliJ IDEA Open API and Plugin Development
How to detect that a shortcut has been changed?
0 votes
Created
June 04, 2015 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...
Community
IntelliJ IDEA Open API and Plugin Development
editor popup menu
0 votes
Created
December 28, 2015 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...
Community
IntelliJ IDEA Open API and Plugin Development
Add additional action to FileHistoryPanelImpl WITHOUT own VcsProvider
0 votes
Created
January 11, 2016 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(); ...
Community
IntelliJ IDEA Open API and Plugin Development
popup field
0 votes
«
First
‹
Previous
Next
›
Last
»