File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -193,9 +193,9 @@ export abstract class SimpleFindWidget extends Widget {
193
193
}
194
194
}
195
195
196
+ public abstract find ( previous : boolean ) : void ;
197
+ public abstract findFirst ( ) : void ;
196
198
protected abstract _onInputChanged ( ) : boolean ;
197
- protected abstract find ( previous : boolean ) : void ;
198
- protected abstract findFirst ( ) : void ;
199
199
protected abstract _onFocusTrackerFocus ( ) : void ;
200
200
protected abstract _onFocusTrackerBlur ( ) : void ;
201
201
protected abstract _onFindInputFocusTrackerFocus ( ) : void ;
Original file line number Diff line number Diff line change @@ -382,7 +382,8 @@ class SingleTerminalTabActionViewItem extends MenuEntryActionViewItem {
382
382
}
383
383
}
384
384
385
- override updateLabel ( e ?: ITerminalInstance ) : void {
385
+ // eslint-disable-next-line @typescript-eslint/naming-convention
386
+ protected override updateLabel ( e ?: ITerminalInstance ) : void {
386
387
// Only update if it's the active instance
387
388
if ( e && e !== this . _terminalGroupService . activeInstance ) {
388
389
return ;
Original file line number Diff line number Diff line change @@ -81,5 +81,5 @@ export class WebviewFindWidget extends SimpleFindWidget {
81
81
82
82
protected _onFindInputFocusTrackerBlur ( ) { }
83
83
84
- protected findFirst ( ) { }
84
+ findFirst ( ) { }
85
85
}
You can’t perform that action at this time.
0 commit comments