1
0
mirror of https://github.com/chylex/IntelliJ-Rainbow-Brackets.git synced 2025-04-10 18:15:50 +02:00

Remove unused ruby configs, fix

This commit is contained in:
张志豪 2018-05-07 22:52:01 +08:00
parent 739163a66b
commit 3e8e128362
3 changed files with 0 additions and 21 deletions
src/main
kotlin/com/github/izhangzhihao/rainbow/brackets/provider
resources/META-INF

View File

@ -1,14 +0,0 @@
package com.github.izhangzhihao.rainbow.brackets.provider
import com.intellij.lang.BracePair
import org.jetbrains.plugins.ruby.rdoc.RDocTokenTypes.LPAREN
import org.jetbrains.plugins.ruby.rdoc.RDocTokenTypes.RPAREN
class RubyBracketsProvider : PairedBraceProvider {
override val pairs: List<BracePair> = PAIRS
companion object {
private val PAIRS: List<BracePair> = listOf(BracePair(LPAREN, RPAREN, false))
}
}

View File

@ -185,7 +185,6 @@
<depends optional="true" config-file="JSX.xml">JavaScript</depends>
<depends optional="true" config-file="dart-brackets.xml">Dart</depends>
<depends optional="true" config-file="groovy-brackets.xml">org.intellij.groovy</depends>
<depends optional="true" config-file="ruby.xml">org.jetbrains.plugins.ruby</depends>
<extensionPoints>
<extensionPoint name="pairedBraceProvider" beanClass="com.intellij.lang.LanguageExtensionPoint">

View File

@ -1,6 +0,0 @@
<idea-plugin>
<extensions defaultExtensionNs="izhangzhihao.rainbow.brackets">
<pairedBraceProvider language="ruby"
implementationClass="com.github.izhangzhihao.rainbow.brackets.provider.RubyBracketsProvider"/>
</extensions>
</idea-plugin>