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 {
193193 }
194194 }
195195
196+ public abstract find ( previous : boolean ) : void ;
197+ public abstract findFirst ( ) : void ;
196198 protected abstract _onInputChanged ( ) : boolean ;
197- protected abstract find ( previous : boolean ) : void ;
198- protected abstract findFirst ( ) : void ;
199199 protected abstract _onFocusTrackerFocus ( ) : void ;
200200 protected abstract _onFocusTrackerBlur ( ) : void ;
201201 protected abstract _onFindInputFocusTrackerFocus ( ) : void ;
Original file line number Diff line number Diff line change @@ -382,7 +382,8 @@ class SingleTerminalTabActionViewItem extends MenuEntryActionViewItem {
382382 }
383383 }
384384
385- override updateLabel ( e ?: ITerminalInstance ) : void {
385+ // eslint-disable-next-line @typescript-eslint/naming-convention
386+ protected override updateLabel ( e ?: ITerminalInstance ) : void {
386387 // Only update if it's the active instance
387388 if ( e && e !== this . _terminalGroupService . activeInstance ) {
388389 return ;
Original file line number Diff line number Diff line change @@ -81,5 +81,5 @@ export class WebviewFindWidget extends SimpleFindWidget {
8181
8282 protected _onFindInputFocusTrackerBlur ( ) { }
8383
84- protected findFirst ( ) { }
84+ findFirst ( ) { }
8585}
You can’t perform that action at this time.
0 commit comments