Skip to content

Commit 6e73638

Browse files
committed
fix: Improve labels for custom languages settings
1 parent 3fb46c1 commit 6e73638

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

settings/CodeCompletionSettings.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -193,10 +193,11 @@ CodeCompletionSettings::CodeCompletionSettings()
193193
"<code_context>\n${prefix}<cursor>${suffix}\n</code_context>\n\n");
194194

195195
customLanguages.setSettingsKey(Constants::CC_CUSTOM_LANGUAGES);
196-
customLanguages.setLabelText(Tr::tr("Additional Programming Languages for handling:"));
196+
customLanguages.setLabelText(
197+
Tr::tr("Additional Programming Languages for handling: Example: rust,//,rust rs,rs"));
197198
customLanguages.setToolTip(Tr::tr("Specify additional programming languages in format: "
198199
"name,comment_style,model_names,extensions\n"
199-
"Example: rust,//,rust rs,rs"
200+
"Example: rust,//,rust rs,rs\n"
200201
"Fields: language name, comment prefix, names from LLM "
201202
"(space-separated), file extensions (space-separated)"));
202203
customLanguages.setDefaultValue({{"cmake,#,cmake,CMakeLists.txt"}, {"qmake,#,qmake,pro pri"}});

0 commit comments

Comments
 (0)