Merge branch 'master' into fix-caps-lock-ime

This commit is contained in:
SerKo
2022-04-10 07:02:52 +08:00
committed by GitHub
2 changed files with 1 additions and 4 deletions
@@ -145,9 +145,6 @@ export class SearchAddon implements ITerminalAddon {
return;
}
searchOptions = searchOptions || {};
if (term === this._cachedSearchTerm && !this._dataChanged) {
return;
}
// new search, clear out the old decorations
this.clearDecorations();
+1 -1
View File
@@ -444,7 +444,7 @@ declare module 'xterm' {
* This will only take effect when {@link IDecorationOptions.overviewRulerOptions}
* were provided initially.
*/
overviewRulerOptions?: Pick<IDecorationOverviewRulerOptions, 'color'>;
options: Pick<IDecorationOptions, 'overviewRulerOptions'>;
}