mirror of
https://github.com/nuintun/command-manager.git
synced 2025-06-08 04:04:04 +08:00
14 lines
334 B
JavaScript
14 lines
334 B
JavaScript
'use strict';
|
|
|
|
module.exports = function (Terminal){
|
|
Terminal.termName = 'xterm';
|
|
Terminal.geometry = [80, 24];
|
|
Terminal.cursorBlink = true;
|
|
Terminal.visualBell = false;
|
|
Terminal.popOnBell = false;
|
|
Terminal.scrollback = 1000;
|
|
Terminal.screenKeys = false;
|
|
Terminal.programFeatures = false;
|
|
Terminal.debug = false;
|
|
};
|