kopia lustrzana https://github.com/c9/core
fix terminal resize on windows
rodzic
0757e52bdd
commit
2ed10b1b26
|
@ -2008,15 +2008,19 @@ module.exports = function setup(fsOptions) {
|
||||||
};
|
};
|
||||||
|
|
||||||
this.destroy = function(){
|
this.destroy = function(){
|
||||||
pty.destroy.apply(pty, arguments);
|
return pty.destroy.apply(pty, arguments);
|
||||||
};
|
};
|
||||||
|
|
||||||
this.end = function(){
|
this.end = function(){
|
||||||
pty.end.apply(pty, arguments);
|
return pty.end.apply(pty, arguments);
|
||||||
};
|
};
|
||||||
|
|
||||||
this.write = function() {
|
this.write = function() {
|
||||||
pty.write.apply(pty, arguments);
|
return pty.write.apply(pty, arguments);
|
||||||
|
};
|
||||||
|
|
||||||
|
this.resize = function() {
|
||||||
|
return pty.resize.apply(pty, arguments);
|
||||||
};
|
};
|
||||||
|
|
||||||
// this.acknowledgeWrite = function(callback) {
|
// this.acknowledgeWrite = function(callback) {
|
||||||
|
|
Ładowanie…
Reference in New Issue