@@ -121,28 +121,28 @@ export class SettingsProvider {
121121 } else if ( message . command == 'CHANGE_MODEL_PROVIDER_KEY' ) {
122122 await handle_change_model_provider_key ( this , message )
123123 } else if ( message . command == 'GET_CODE_COMPLETIONS_CONFIGURATIONS' ) {
124- await handle_get_configurations ( this , 'code-completions ' )
124+ await handle_get_configurations ( this , 'code-at-cursor ' )
125125 } else if (
126126 message . command == 'REORDER_CODE_COMPLETIONS_CONFIGURATIONS'
127127 ) {
128128 await handle_reorder_configuration (
129129 this ,
130130 message . configurations ,
131- 'code-completions '
131+ 'code-at-cursor '
132132 )
133133 } else if ( message . command == 'DELETE_CODE_COMPLETIONS_CONFIGURATION' ) {
134134 await handle_delete_configuration (
135135 this ,
136136 message . configuration_id ,
137- 'code-completions '
137+ 'code-at-cursor '
138138 )
139139 } else if (
140140 message . command == 'SET_DEFAULT_CODE_COMPLETIONS_CONFIGURATION'
141141 ) {
142142 await handle_set_default_configuration (
143143 this ,
144144 message . configuration_id ,
145- 'code-completions '
145+ 'code-at-cursor '
146146 )
147147 } else if ( message . command == 'GET_EDIT_CONTEXT_CONFIGURATIONS' ) {
148148 await handle_get_configurations ( this , 'edit-context' )
@@ -304,7 +304,7 @@ export class SettingsProvider {
304304 vscode . workspace . onDidChangeConfiguration ( ( e ) => {
305305 if ( e . affectsConfiguration ( 'codeWebChat' ) ) {
306306 void handle_get_model_providers ( this )
307- void handle_get_configurations ( this , 'code-completions ' )
307+ void handle_get_configurations ( this , 'code-at-cursor ' )
308308 void handle_get_configurations ( this , 'commit-messages' )
309309 void handle_get_configurations ( this , 'edit-context' )
310310 void handle_get_edit_context_system_instructions ( this )
0 commit comments