Skip to content

Commit 8fbfd57

Browse files
committed
chore: cs fixes
1 parent 47a25fa commit 8fbfd57

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/main/kotlin/com/github/tempest/framework/ComponentReferenceContributor.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ class ComponentReferenceContributor : PsiReferenceContributor() {
3838
GlobalSearchScope.projectScope(project),
3939
{
4040
val psiFile = it.findPsiFile(project) ?: return@processFilesByName true
41+
// println("found file $it for ${element.name}")
4142
result.add(
4243
object : PsiReferenceBase<PsiElement>(element, nameElement.textRange, false) {
4344
override fun resolve() = psiFile

src/main/resources/META-INF/plugin.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@
1515
<webSymbols.webTypes
1616
source="META-INF/webTypes.json"
1717
enableByDefault="true"/>
18-
<xml.tagNameProvider implementation="com.github.tempest.framework.ComponentTagNameProvider" />
19-
<psi.referenceContributor language="HTML" implementation="com.github.tempest.framework.ComponentReferenceContributor" />
18+
<xml.tagNameProvider
19+
implementation="com.github.tempest.framework.ComponentTagNameProvider"/>
20+
<psi.referenceContributor
21+
language="HTML"
22+
implementation="com.github.tempest.framework.ComponentReferenceContributor"/>
2023
<spellchecker.bundledDictionaryProvider
2124
implementation="com.github.tempest.framework.SpellcheckingDictionaryProvider"/>
2225
</extensions>

0 commit comments

Comments
 (0)