mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-28 15:29:58 +00:00
fixes
This commit is contained in:
parent
471f9effcf
commit
0f8cff2d5b
@ -26,8 +26,8 @@ export class SearchPanelComponent {
|
|||||||
this.findNext(true)
|
this.findNext(true)
|
||||||
}
|
}
|
||||||
|
|
||||||
findNext (incremental? = false) {
|
findNext (incremental = false) {
|
||||||
if (!this.frontend.findNext(this.query, { ...this.options, incremental })) {
|
if (!this.frontend.findNext(this.query, { ...this.options, incremental: incremental || undefined })) {
|
||||||
this.notFound = true
|
this.notFound = true
|
||||||
this.toastr.error('Not found')
|
this.toastr.error('Not found')
|
||||||
}
|
}
|
||||||
|
@ -113,6 +113,8 @@ export class XTermFrontend extends Frontend {
|
|||||||
}
|
}
|
||||||
|
|
||||||
attach (host: HTMLElement): void {
|
attach (host: HTMLElement): void {
|
||||||
|
this.configure()
|
||||||
|
|
||||||
this.xterm.open(host)
|
this.xterm.open(host)
|
||||||
this.opened = true
|
this.opened = true
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user