summaryrefslogtreecommitdiff
path: root/doc/api/tty.md
diff options
context:
space:
mode:
authorBartosz Sosnowski <bartosz@janeasystems.com>2017-10-26 17:23:00 +0200
committerBartosz Sosnowski <bartosz@janeasystems.com>2017-10-26 18:10:48 +0200
commit33021ba2b05bf27a569016914ec0095758ec2a4c (patch)
tree727fbd3f5c853d1d64135258a11e83ebb26a3354 /doc/api/tty.md
parentb61a08ca2d1e6120256e939381361cc0ce5a28a9 (diff)
downloadandroid-node-v8-33021ba2b05bf27a569016914ec0095758ec2a4c.tar.gz
android-node-v8-33021ba2b05bf27a569016914ec0095758ec2a4c.tar.bz2
android-node-v8-33021ba2b05bf27a569016914ec0095758ec2a4c.zip
doc, win: remove note about resize
Libuv 1.15.0 improved console resize detection on Windows. This note is no longer needed. PR-URL: https://github.com/nodejs/node/pull/16320 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'doc/api/tty.md')
-rw-r--r--doc/api/tty.md9
1 files changed, 0 insertions, 9 deletions
diff --git a/doc/api/tty.md b/doc/api/tty.md
index baa31ac8f0..497f53509d 100644
--- a/doc/api/tty.md
+++ b/doc/api/tty.md
@@ -90,15 +90,6 @@ process.stdout.on('resize', () => {
});
```
-*Note*: On Windows resize events will be emitted only if stdin is unpaused
-(by a call to `resume()` or by adding a data listener) and in raw mode. It can
-also be triggered if a terminal control sequence that moves the cursor is
-written to the screen. Also, the resize event will only be signaled if the
-console screen buffer height was also changed. For example shrinking the
-console window height will not cause the resize event to be emitted. Increasing
-the console window height will only be registered when the new console window
-height is greater than the current console buffer size.
-
### writeStream.columns
<!-- YAML
added: v0.7.7