Merge pull request #4803 from tisilent/clear-repeat-overviewRulerWidth

Clear repeat overviewRulerWidth option in demo
This commit is contained in:
Daniel Imms
2023-09-14 12:52:44 -07:00
committed by GitHub
+1 -3
View File
@@ -460,9 +460,7 @@ function initOptions(term: TerminalType): void {
};
const options = Object.getOwnPropertyNames(term.options);
const booleanOptions = [];
const numberOptions = [
'overviewRulerWidth'
];
const numberOptions = [];
options.filter(o => blacklistedOptions.indexOf(o) === -1).forEach(o => {
switch (typeof term.options[o]) {
case 'boolean':