Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
execute: () => {
let options = Terminal.defaultOptions;
if (options.fontSize < 72) {
options.fontSize++;
tracker.forEach(widget => { widget.fontSize = options.fontSize; });
}
},
isEnabled: hasWidget
execute: () => {
let options = Terminal.defaultOptions;
if (options.fontSize > 9) {
options.fontSize--;
tracker.forEach(widget => { widget.fontSize = options.fontSize; });
}
},
isEnabled: hasWidget