|
@ -96,12 +96,12 @@ function Interface(input, output, completer) { |
|
|
this.historyIndex = -1; |
|
|
this.historyIndex = -1; |
|
|
|
|
|
|
|
|
var winSize = output.getWindowSize(); |
|
|
var winSize = output.getWindowSize(); |
|
|
exports.columns = winSize[1]; |
|
|
exports.columns = winSize[0]; |
|
|
|
|
|
|
|
|
if (process.listeners('SIGWINCH').length === 0) { |
|
|
if (process.listeners('SIGWINCH').length === 0) { |
|
|
process.on('SIGWINCH', function() { |
|
|
process.on('SIGWINCH', function() { |
|
|
var winSize = output.getWindowSize(); |
|
|
var winSize = output.getWindowSize(); |
|
|
exports.columns = winSize[1]; |
|
|
exports.columns = winSize[0]; |
|
|
}); |
|
|
}); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|