Skip to content

Commit 95a3a32

Browse files
committed
fix: snippet source for insert snippet
1 parent 8c69472 commit 95a3a32

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
pluginGroup = com.github.shyim.shopware6
55
pluginName=shopware6-phpstorm-plugin
6-
pluginVersion=0.0.31
6+
pluginVersion=0.0.32
77

88
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
99
# for insight into build numbers and IntelliJ Platform versions.

src/main/kotlin/de/shyim/shopware6/util/AdminSnippetUtil.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ object AdminSnippetUtil {
6262
fun getAllEnglishKeys(project: Project): MutableList<SnippetCompletionElement> {
6363
val keys = mutableListOf<SnippetCompletionElement>()
6464

65-
FrontendSnippetUtil.getAllSnippets(project).forEach { file ->
65+
getAllSnippetFiles(project).forEach { file ->
6666
if (!file.file.endsWith("en-GB.json")) {
6767
return@forEach
6868
}

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@
197197
<vcs.commitMessageProvider implementation="de.shyim.shopware6.vcs.GitlabCommitMessageProvider"/>
198198

199199
<codeInsight.lineMarkerProvider implementationClass="de.shyim.shopware6.marker.js.AdminComponentMarker" language="JavaScript"/>
200-
<gotoSymbolContributor implementation="de.shyim.shopware6.navigation.symbol.AdminComponentSymbolContributor" order="first"/>
200+
<gotoSymbolContributor implementation="de.shyim.shopware6.navigation.symbol.AdminComponentSymbolContributor"/>
201201
</extensions>
202202

203203
<extensions defaultExtensionNs="fr.adrienbrault.idea.symfony2plugin.extension">

0 commit comments

Comments
 (0)