java plugin: register FoldLinesLikeThis action in IntelliJ IDEA, not in Java plugin

The action is defined in the platform and registered in some other IDEs (e.g. RubyMine and DataGrip) so if it is registered in Java plugin this may lead to clashes.

GitOrigin-RevId: 0c1980bec0661a3c74d7fb5dfefa49393316b7f9
This commit is contained in:
nik
2019-06-04 12:09:24 +03:00
committed by intellij-monorepo-bot
parent 0666d85117
commit 1b57510f2b
2 changed files with 3 additions and 5 deletions
@@ -168,5 +168,8 @@
<add-to-group group-id="ToolsBasicGroup" anchor="after" relative-to-action="SaveFileAsTemplate"/>
</group>
<action id="ConsoleView.FoldLinesLikeThis" class="com.intellij.execution.console.FoldLinesLikeThis" text="Fold Lines Like This">
<add-to-group group-id="ConsoleEditorPopupMenu" anchor="after" relative-to-action="$SearchWeb"/>
</action>
</actions>
</idea-plugin>
-5
View File
@@ -109,11 +109,6 @@
</group>
<!-- Tools -->
<action id="ConsoleView.FoldLinesLikeThis" class="com.intellij.execution.console.FoldLinesLikeThis" text="Fold Lines Like This">
<add-to-group group-id="ConsoleEditorPopupMenu" anchor="after" relative-to-action="$SearchWeb"/>
</action>
<group id="Internal1" text="IDEA Internal Actions" internal="true">
<separator/>
<action id="Merge3Files" internal="true" class="com.intellij.openapi.diff.actions.MergeFilesAction"/>