This commit is contained in:
Jackson Kearl
2021-04-15 14:31:05 -07:00
parent 6e84c224f4
commit 28b2a0f19f
2 changed files with 2 additions and 2 deletions
@@ -148,7 +148,7 @@ export class SearchWidget extends Widget {
readonly onDidToggleContext: Event<void> = this._onDidToggleContext.event;
private showContextCheckbox!: Checkbox;
private contextLinesInput!: InputBox;
public contextLinesInput!: InputBox;
constructor(
container: HTMLElement,
@@ -184,7 +184,7 @@ export class SearchEditor extends BaseTextEditor {
this.inputPatternExcludes.onSubmit(triggeredOnType => this.triggerSearch({ resetCursor: false, delay: triggeredOnType ? this.searchConfig.searchOnTypeDebouncePeriod : 0 }));
this._register(this.inputPatternExcludes.onChangeIgnoreBox(() => this.triggerSearch()));
[this.queryEditorWidget.searchInput, this.inputPatternIncludes, this.inputPatternExcludes].map(input =>
[this.queryEditorWidget.searchInput, this.inputPatternIncludes, this.inputPatternExcludes, this.queryEditorWidget.contextLinesInput].map(input =>
this._register(attachInputBoxStyler(input, this.themeService, { inputBorder: searchEditorTextInputBorder })));
// Messages