File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/jupyterlab-lsp/src/features/completion Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ export class CompletionLabIntegration implements IFeatureLabIntegration {
163
163
}
164
164
this . current_completion_connector = new LSPConnector ( {
165
165
editor : editor ,
166
- icons_manager : this . completionThemeManager ,
166
+ themeManager : this . completionThemeManager ,
167
167
connections : this . current_adapter . connection_manager . connections ,
168
168
virtual_editor : this . current_adapter . virtual_editor ,
169
169
settings : this . settings ,
Original file line number Diff line number Diff line change @@ -296,7 +296,7 @@ export class LSPConnector
296
296
if ( typeof type === 'undefined' || type == '<unknown>' ) {
297
297
type = KernelKind ;
298
298
}
299
- return ( this . options . icons_manager . get_icon ( type ) as LabIcon ) || undefined ;
299
+ return ( this . options . themeManager . get_icon ( type ) as LabIcon ) || undefined ;
300
300
}
301
301
302
302
private transform_reply (
@@ -420,7 +420,7 @@ export namespace LSPConnector {
420
420
421
421
settings : FeatureSettings < LSPCompletionSettings > ;
422
422
423
- icons_manager : ILSPCompletionThemeManager ;
423
+ themeManager : ILSPCompletionThemeManager ;
424
424
425
425
session ?: Session . ISessionConnection ;
426
426
}
You can’t perform that action at this time.
0 commit comments