summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/Keyboard.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Keyboard.php b/src/Keyboard.php
index f67c1a6..2fac255 100644
--- a/src/Keyboard.php
+++ b/src/Keyboard.php
@@ -12,7 +12,7 @@ class Keyboard
public function __construct(Core $core)
{
$this->core = $core;
- exec('stty -icanon');
+ exec('stty -icanon -echo');
$this->file = fopen('php://stdin', 'r');
stream_set_blocking($this->file, false);
}