diff --git a/integration/schema-language-server/clients/intellij/src/main/kotlin/ai/vespa/schemals/intellij/SchemaLspServerSupportProvider.kt b/integration/schema-language-server/clients/intellij/src/main/kotlin/ai/vespa/schemals/intellij/SchemaLspServerSupportProvider.kt index 35569c4f7ed4..0a3c908c8523 100644 --- a/integration/schema-language-server/clients/intellij/src/main/kotlin/ai/vespa/schemals/intellij/SchemaLspServerSupportProvider.kt +++ b/integration/schema-language-server/clients/intellij/src/main/kotlin/ai/vespa/schemals/intellij/SchemaLspServerSupportProvider.kt @@ -28,8 +28,8 @@ class SchemaLspServerDescriptor(project: Project) : ProjectWideLspServerDescript override fun isSupportedFile(file: VirtualFile) = file.extension.equals("sd") || file.extension.equals("profile") override fun createCommandLine(): GeneralCommandLine { - val schemaPlugin = PluginManager.getInstance().findEnabledPlugin(PluginId.getId("ai.vespa.schemals.intellij"))!! + val schemaPlugin = PluginManager.getInstance().findEnabledPlugin(PluginId.getId("ai.vespa"))!! val serverPath = schemaPlugin.pluginPath.resolve("schema-language-server-jar-with-dependencies.jar").toAbsolutePath().toString() return GeneralCommandLine("java", "-jar", serverPath) } -} \ No newline at end of file +}