@@ -38,7 +38,7 @@ import { INotificationService } from 'vs/platform/notification/common/notificati
38
38
import { IEditorProgressService } from 'vs/platform/progress/common/progress' ;
39
39
import { Registry } from 'vs/platform/registry/common/platform' ;
40
40
import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry' ;
41
- import { CONTEXT_RENAME_INPUT_VISIBLE , NewNameSource , RenameInputField , RenameInputFieldResult } from './renameInputField' ;
41
+ import { CONTEXT_RENAME_INPUT_VISIBLE , NewNameSource , RenameInputFieldResult , RenameWidget } from './renameInputField' ;
42
42
43
43
class RenameSkeleton {
44
44
@@ -138,7 +138,7 @@ class RenameController implements IEditorContribution {
138
138
return editor . getContribution < RenameController > ( RenameController . ID ) ;
139
139
}
140
140
141
- private readonly _renameInputField : RenameInputField ;
141
+ private readonly _renameInputField : RenameWidget ;
142
142
private readonly _disposableStore = new DisposableStore ( ) ;
143
143
private _cts : CancellationTokenSource = new CancellationTokenSource ( ) ;
144
144
@@ -153,7 +153,7 @@ class RenameController implements IEditorContribution {
153
153
@ILanguageFeaturesService private readonly _languageFeaturesService : ILanguageFeaturesService ,
154
154
@ITelemetryService private readonly _telemetryService : ITelemetryService ,
155
155
) {
156
- this . _renameInputField = this . _disposableStore . add ( this . _instaService . createInstance ( RenameInputField , this . editor , [ 'acceptRenameInput' , 'acceptRenameInputWithPreview' ] ) ) ;
156
+ this . _renameInputField = this . _disposableStore . add ( this . _instaService . createInstance ( RenameWidget , this . editor , [ 'acceptRenameInput' , 'acceptRenameInputWithPreview' ] ) ) ;
157
157
}
158
158
159
159
dispose ( ) : void {
0 commit comments