Added KotlinCodeInsightWorkspaceSettings in place of sharing kotlin settings with java CodeInsightSettings

This commit is contained in:
Vladimir Dolzhenko
2019-09-23 16:05:11 +02:00
parent 6b5a73ffa9
commit 027c60080b
6 changed files with 149 additions and 4 deletions
@@ -22,7 +22,8 @@ enum class FUSEventGroups(groupIdSuffix: String, val events: Set<String> = setOf
NPWizards("ide.npwizards", NPWizardsEvents),
Debug("ide.debugger"),
J2K("ide.j2k"),
Editor("ide.editor");
Editor("ide.editor"),
Settings("ide.settings");
val GROUP_ID: String = "kotlin.$groupIdSuffix"
}