Skip to content

Commit

Permalink
Partially revert with plugin changes (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
arhont375 authored May 15, 2023
1 parent 14dda68 commit 8ba82f3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
10 changes: 2 additions & 8 deletions thrift/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
<depends>com.intellij.modules.vcs</depends>
<depends>com.intellij.modules.xml</depends>
<depends>com.intellij.modules.xdebugger</depends>
<depends>com.intellij.java</depends>
<depends optional="true" config-file="withJava.xml">com.intellij.modules.java</depends>
<depends optional="true" config-file="withScala.xml">org.intellij.scala</depends>

<application-components>
<!-- Add your application components here -->
Expand Down Expand Up @@ -99,11 +100,4 @@
<add-to-group group-id="RunContextPopupGroup" anchor="first"/>
</action>
</actions>

<extensions defaultExtensionNs="com.intellij">
<codeInsight.lineMarkerProvider language="JAVA"
implementationClass="com.intellij.plugins.thrift.editor.GoToThriftDefinitionMarkerProvider"/>
<codeInsight.lineMarkerProvider language="Scala"
implementationClass="com.intellij.plugins.thrift.editor.GoToThriftDefinitionMarkerProvider"/>
</extensions>
</idea-plugin>
6 changes: 6 additions & 0 deletions thrift/src/main/resources/META-INF/withJava.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<idea-plugin>
<extensions defaultExtensionNs="com.intellij">
<codeInsight.lineMarkerProvider language="JAVA"
implementationClass="com.intellij.plugins.thrift.editor.GoToThriftDefinitionMarkerProvider"/>
</extensions>
</idea-plugin>
6 changes: 6 additions & 0 deletions thrift/src/main/resources/META-INF/withScala.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<idea-plugin>
<extensions defaultExtensionNs="com.intellij">
<codeInsight.lineMarkerProvider language="Scala"
implementationClass="com.intellij.plugins.thrift.editor.GoToThriftDefinitionMarkerProvider"/>
</extensions>
</idea-plugin>

0 comments on commit 8ba82f3

Please sign in to comment.