created FUS Group for New Project Wizards and Frameworks

This commit is contained in:
Anton Yalyshev
2019-04-24 21:30:28 +03:00
parent 01f34a0ba7
commit 1d3f75adfd
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -79,5 +79,6 @@ The Kotlin plugin provides language support in IntelliJ IDEA and Android Studio.
<statistics.counterUsagesCollector groupId="kotlin.gradle.library" version="1"/>
<statistics.counterUsagesCollector groupId="kotlin.ide.action.refactoring" version="1"/>
<statistics.counterUsagesCollector groupId="kotlin.ide.newFileTempl" version="1"/>
<statistics.counterUsagesCollector groupId="kotlin.ide.npwizards" version="1"/>
</extensions>
</idea-plugin>
@@ -12,7 +12,8 @@ enum class FUSEventGroups(groupIdSuffix: String) {
MavenTarget("maven.target"),
JPSTarget("jps.target"),
Refactoring("ide.action.refactoring"),
NewFileTemplate("ide.newFileTempl");
NewFileTemplate("ide.newFileTempl"),
NPWizards("ide.npwizards");
val GROUP_ID: String = "kotlin.$groupIdSuffix"
}