mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 08:06:56 +07:00
109 lines
5.4 KiB
XML
109 lines
5.4 KiB
XML
<idea-plugin>
|
|
<dependencies>
|
|
<module name="intellij.platform.vcs.impl"/>
|
|
<module name="intellij.platform.vcs.impl.shared"/>
|
|
</dependencies>
|
|
|
|
<actions resource-bundle="messages.LocalHistoryBundle">
|
|
<action id="LocalHistory.ShowHistory" class="com.intellij.history.integration.ui.actions.ShowHistoryAction">
|
|
<override-text place="GoToAction"/>
|
|
<override-text place="ActionPlace.VcsQuickListPopupAction"/>
|
|
<add-to-group group-id="Vcs.Operations.Popup" anchor="after" relative-to-action="ShowAnnotateOperationsPopupGroup"/>
|
|
</action>
|
|
<action id="LocalHistory.ShowSelectionHistory" class="com.intellij.history.integration.ui.actions.ShowSelectionHistoryAction">
|
|
<synonym key="action.synonym.LocalHistory.ShowSelectionHistory.method.text"/>
|
|
<synonym key="action.synonym.LocalHistory.ShowSelectionHistory.class.text"/>
|
|
<override-text place="GoToAction"/>
|
|
</action>
|
|
<action id="LocalHistory.ShowProjectHistory" class="com.intellij.history.integration.ui.actions.ShowProjectHistoryAction">
|
|
<override-text place="GoToAction"/>
|
|
<override-text place="Vcs.Toolbar.Widget"/>
|
|
</action>
|
|
<action id="RecentChanges" class="com.intellij.history.integration.ui.actions.RecentChangesAction">
|
|
<keyboard-shortcut first-keystroke="alt shift C" keymap="$default"/>
|
|
<add-to-group group-id="ViewRecentActions" anchor="last"/>
|
|
</action>
|
|
<action id="LocalHistory.PutLabel" class="com.intellij.history.integration.ui.actions.PutLabelAction"/>
|
|
|
|
<group id="LocalHistory" class="com.intellij.history.integration.ui.actions.LocalHistoryGroup" popup="true">
|
|
<reference ref="LocalHistory.ShowHistory"/>
|
|
<reference ref="LocalHistory.ShowSelectionHistory"/>
|
|
<separator/>
|
|
<reference ref="LocalHistory.ShowProjectHistory"/>
|
|
<reference ref="RecentChanges"/>
|
|
<reference ref="LocalHistory.PutLabel"/>
|
|
|
|
<add-to-group group-id="VersionControlsGroup" anchor="first"/>
|
|
</group>
|
|
|
|
<group id="LocalHistory.MainMenuGroup">
|
|
<separator/>
|
|
<reference ref="LocalHistory"/>
|
|
<separator/>
|
|
<add-to-group group-id="FileMenu" relative-to-action="SaveAll" anchor="before"/>
|
|
</group>
|
|
|
|
<action internal="true" id="ValidateLocalHistory" class="com.intellij.history.integration.ValidateHistoryAction">
|
|
<add-to-group group-id="Internal.VFS"/>
|
|
</action>
|
|
|
|
<!--Activity View-->
|
|
<action id="ActivityView.Revert" class="com.intellij.platform.lvcs.impl.actions.RevertAction" icon="AllIcons.Actions.Rollback"/>
|
|
<action id="ActivityView.RevertDifferences" class="com.intellij.platform.lvcs.impl.actions.RevertDifferencesAction"
|
|
icon="AllIcons.Actions.Rollback"/>
|
|
<action id="ActivityView.CreatePatch" class="com.intellij.platform.lvcs.impl.actions.CreatePatchAction" icon="AllIcons.Vcs.Patch"/>
|
|
|
|
<group id="ActivityView.Toolbar">
|
|
<reference ref="ActivityView.Revert"/>
|
|
<reference ref="ActivityView.CreatePatch"/>
|
|
</group>
|
|
<group id="ActivityView.Popup">
|
|
<reference ref="ActivityView.Revert"/>
|
|
<reference ref="ActivityView.CreatePatch"/>
|
|
<reference ref="Diff.ShowDiff"/>
|
|
</group>
|
|
<group id="ActivityView.ChangesBrowser.Toolbar">
|
|
<reference ref="ActivityView.RevertDifferences"/>
|
|
</group>
|
|
<group id="ActivityView.ChangesBrowser.Popup">
|
|
<reference ref="ActivityView.RevertDifferences"/>
|
|
</group>
|
|
</actions>
|
|
|
|
<extensionPoints>
|
|
<extensionPoint name="history.activityPresentationProvider"
|
|
interface="com.intellij.history.ActivityPresentationProvider"
|
|
dynamic="true"/>
|
|
</extensionPoints>
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<undoProvider implementation="com.intellij.openapi.command.impl.FileUndoProvider"/>
|
|
<projectUndoProvider implementation="com.intellij.openapi.command.impl.FileUndoProvider"/>
|
|
|
|
<applicationService serviceInterface="com.intellij.history.LocalHistory"
|
|
serviceImplementation="com.intellij.history.integration.LocalHistoryImpl"/>
|
|
<applicationService serviceImplementation="com.intellij.history.integration.IdeaGateway"/>
|
|
|
|
<virtualFileManagerListener
|
|
implementation="com.intellij.history.integration.LocalHistoryEventDispatcher$LocalHistoryFileManagerListener"/>
|
|
<advancedSetting id="localHistory.daysToKeep" default="5" groupKey="group.advanced.settings.ide"/>
|
|
|
|
<history.activityPresentationProvider implementation="com.intellij.history.integration.CommonActivityPresentationProvider"/>
|
|
|
|
<applicationService serviceImplementation="com.intellij.platform.lvcs.impl.settings.ActivityViewApplicationSettings"/>
|
|
|
|
<notificationGroup displayType="BALLOON" id="LocalHistory.General" bundle="messages.LocalHistoryBundle"
|
|
key="notification.group.general"/>
|
|
|
|
<statistics.counterUsagesCollector implementationClass="com.intellij.platform.lvcs.impl.statistics.LocalHistoryCounter"/>
|
|
<statistics.notificationIdsHolder implementation="com.intellij.history.core.LocalHistoryNotificationIdsHolder"/>
|
|
</extensions>
|
|
|
|
<applicationListeners>
|
|
<listener class="com.intellij.history.integration.LocalHistoryEventDispatcher$LocalHistoryCommandListener"
|
|
topic="com.intellij.openapi.command.CommandListener"/>
|
|
<listener class="com.intellij.history.integration.LocalHistoryEventDispatcher$LocalHistoryBulkFileListener"
|
|
topic="com.intellij.openapi.vfs.newvfs.BulkFileListener"/>
|
|
</applicationListeners>
|
|
</idea-plugin>
|