fix terminal resize on windows

pull/282/head
nightwing 2016-03-30 21:23:00 +04:00
rodzic 0757e52bdd
commit 2ed10b1b26
1 zmienionych plików z 7 dodań i 3 usunięć

10
node_modules/vfs-local/localfs.js wygenerowano vendored
Wyświetl plik

@ -2008,15 +2008,19 @@ module.exports = function setup(fsOptions) {
};
this.destroy = function(){
pty.destroy.apply(pty, arguments);
return pty.destroy.apply(pty, arguments);
};
this.end = function(){
pty.end.apply(pty, arguments);
return pty.end.apply(pty, arguments);
};
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) {