From 13441a692664306cceb89b1326ea0d081db8d3b5 Mon Sep 17 00:00:00 2001 From: Luo Tim Date: Fri, 13 Sep 2024 16:20:33 +0800 Subject: [PATCH] Fix code completion keystroke --- build.gradle.kts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 39fdcfa..c65ab7e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -131,19 +131,17 @@ tasks { "PLUGIN_ID" to (pluginID?.takeIf { it.isNotBlank() } ?: "ai.devchat.plugin"), "ASSISTANT_NAME_ZH" to (assistantNameZH?.takeIf { it.isNotBlank() } ?: "DevChat"), "ASSISTANT_NAME_EN" to (assistantNameEN?.takeIf { it.isNotBlank() } ?: "DevChat"), - "default" to "DevChat" + "default" to "\$default" ) } filesMatching("intentionDescriptions/AskIssueIntention/description.html") { expand( "ASSISTANT_NAME_EN" to (assistantNameEN?.takeIf { it.isNotBlank() } ?: "DevChat"), - "default" to "DevChat" ) } filesMatching("intentionDescriptions/FixIssueIntention/description.html") { expand( "ASSISTANT_NAME_EN" to (assistantNameEN?.takeIf { it.isNotBlank() } ?: "DevChat"), - "default" to "DevChat" ) } filesMatching("messages/DevChatBundle.properties") { @@ -151,7 +149,6 @@ tasks { "PLUGIN_ID" to (pluginID?.takeIf { it.isNotBlank() } ?: "ai.devchat.plugin"), "ASSISTANT_NAME_ZH" to (assistantNameZH?.takeIf { it.isNotBlank() } ?: "DevChat"), "ASSISTANT_NAME_EN" to (assistantNameEN?.takeIf { it.isNotBlank() } ?: "DevChat"), - "default" to "DevChat" ) } }