mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:19:59 +07:00
57 lines
2.9 KiB
XML
57 lines
2.9 KiB
XML
<!-- Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
|
<idea-plugin xmlns:xi="http://www.w3.org/2001/XInclude">
|
|
<!-- Components and extensions declared in this file work ONLY in PyCharm, not in Python plugin.
|
|
Both Community and Professional editions. -->
|
|
<module value="com.intellij.modules.pycharm"/>
|
|
|
|
<xi:include href="/META-INF/PlatformLangXmlPlugin.xml"/>
|
|
<xi:include href="intellij.platform.remoteServers.impl.xml"/>
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<applicationInitializedListener implementation="com.intellij.internal.statistic.updater.StatisticsJobsScheduler"/>
|
|
|
|
<projectViewPane implementation="com.intellij.ide.projectView.impl.ProjectViewPane"/>
|
|
|
|
<projectAttachProcessor implementation="com.intellij.platform.ModuleAttachProcessor"/>
|
|
|
|
<bundledColorScheme path="/colorSchemes/monokai"/>
|
|
<bundledColorScheme path="/colorSchemes/twilight"/>
|
|
<bundledColorScheme path="/colorSchemes/WarmNeon"/>
|
|
<bundledColorScheme path="/colorSchemes/github"/>
|
|
|
|
<renameHandler implementation="com.intellij.platform.renameProject.RenameProjectHandler"/>
|
|
<renameHandler implementation="com.intellij.platform.renameProject.ProjectFolderRenameHandler"/>
|
|
</extensions>
|
|
|
|
<actions>
|
|
<group id="PlatformOpenProjectGroup">
|
|
<reference ref="NewProjectOrModuleGroup"/>
|
|
<action id="NewElement" class="com.intellij.ide.actions.NewElementAction" />
|
|
<reference ref="NewScratchFile" />
|
|
<add-to-group group-id="FileOpenGroup" anchor="first"/>
|
|
</group>
|
|
|
|
<action id="SaveAs" class="com.intellij.ide.actions.SaveAsAction">
|
|
<add-to-group group-id="FileOpenGroup" anchor="after" relative-to-action="OpenFile"/>
|
|
</action>
|
|
|
|
<action id="RerunFailedTests" class="com.intellij.execution.testframework.actions.RerunFailedTestsAction"
|
|
icon="AllIcons.RunConfigurations.RerunFailedTests"/>
|
|
|
|
<group id="PyCharm.MarkRootGroup">
|
|
<action id="MarkSourceRoot" class="com.intellij.ide.projectView.actions.MarkJavaSourceRootAction"/>
|
|
<action id="MarkExcludeRoot" class="com.intellij.ide.projectView.actions.MarkExcludeRootAction"/>
|
|
<action id="MarkAsContentRoot" class="com.intellij.ide.projectView.actions.MarkAsContentRootAction"/>
|
|
<action id="MarkTestSourceRoot" class="com.intellij.ide.projectView.actions.MarkTestSourceRootAction"/>
|
|
<action id="UnmarkRoot" class="com.intellij.ide.projectView.actions.UnmarkRootAction"/>
|
|
<add-to-group group-id="MarkRootGroup"/>
|
|
</group>
|
|
|
|
<action overrides="true" id="ForceStepInto" class="com.intellij.openapi.actionSystem.EmptyAction"/>
|
|
|
|
<action id="RenameProject" class="com.intellij.platform.renameProject.RenameProjectAction">
|
|
<add-to-group group-id="FileOpenGroup" anchor="after" relative-to-action="RenameFile"/>
|
|
</action>
|
|
</actions>
|
|
</idea-plugin>
|