Skip to content

Commit

Permalink
Merge pull request #207 from devchat-ai/fix-completion-keystroke
Browse files Browse the repository at this point in the history
Fix code completion keystroke
  • Loading branch information
pplam authored Sep 13, 2024
2 parents 7db6172 + 13441a6 commit c13962f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -131,27 +131,24 @@ 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") {
expand(
"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"
)
}
}
Expand Down

0 comments on commit c13962f

Please sign in to comment.