@@ -192,6 +192,15 @@ CodeCompletionSettings::CodeCompletionSettings()
192
192
" Here is the code context with insertion points:\n "
193
193
" <code_context>\n ${prefix}<cursor>${suffix}\n </code_context>\n\n " );
194
194
195
+ customLanguages.setSettingsKey (Constants::CC_CUSTOM_LANGUAGES);
196
+ customLanguages.setLabelText (Tr::tr (" Additional Programming Languages for handling:" ));
197
+ customLanguages.setToolTip (Tr::tr (" Specify additional programming languages in format: "
198
+ " name,comment_style,model_names,extensions\n "
199
+ " Example: rust,//,rust rs,rs"
200
+ " Fields: language name, comment prefix, names from LLM "
201
+ " (space-separated), file extensions (space-separated)" ));
202
+ customLanguages.setDefaultValue ({{" cmake,#,cmake,CMakeLists.txt" }, {" qmake,#,qmake,pro pri" }});
203
+
195
204
useProjectChangesCache.setSettingsKey (Constants::CC_USE_PROJECT_CHANGES_CACHE);
196
205
useProjectChangesCache.setDefaultValue (true );
197
206
useProjectChangesCache.setLabelText (Tr::tr (" Max Changes Cache Size:" ));
@@ -249,18 +258,18 @@ CodeCompletionSettings::CodeCompletionSettings()
249
258
contextGrid.addRow ({Row{readFullFile}});
250
259
contextGrid.addRow ({Row{readFileParts, readStringsBeforeCursor, readStringsAfterCursor}});
251
260
252
- auto contextItem = Column{
253
- Row{contextGrid , Stretch{1 }},
254
- Row{useSystemPrompt, Stretch{ 1 }} ,
255
- Group{ title ( Tr::tr ( " Prompts for FIM models " )), Column{systemPrompt}},
256
- Group{
257
- title ( Tr::tr ( " Prompts for Non FIM models " )),
258
- Column{
259
- Row{useUserMessageTemplateForCC, Stretch{ 1 }} ,
260
- systemPromptForNonFimModels ,
261
- userMessageTemplateForCC ,
262
- }},
263
- Row{useProjectChangesCache, maxChangesCacheSize, Stretch{1 }}};
261
+ auto contextItem = Column{Row{contextGrid, Stretch{ 1 }},
262
+ Row{useSystemPrompt , Stretch{1 }},
263
+ Group{ title ( Tr::tr ( " Prompts for FIM models " )) ,
264
+ Column{systemPrompt}},
265
+ Group{title ( Tr::tr ( " Prompts for Non FIM models " )),
266
+ Column{
267
+ Row{useUserMessageTemplateForCC, Stretch{ 1 }},
268
+ systemPromptForNonFimModels ,
269
+ userMessageTemplateForCC ,
270
+ customLanguages ,
271
+ }},
272
+ Row{useProjectChangesCache, maxChangesCacheSize, Stretch{1 }}};
264
273
265
274
return Column{
266
275
Row{Stretch{1 }, resetToDefaults},
@@ -355,6 +364,7 @@ void CodeCompletionSettings::resetSettingsToDefaults()
355
364
resetAspect (useUserMessageTemplateForCC);
356
365
resetAspect (userMessageTemplateForCC);
357
366
resetAspect (systemPromptForNonFimModels);
367
+ resetAspect (customLanguages);
358
368
}
359
369
}
360
370
0 commit comments