From 06691764e87c2979f4a00ed386e237150f055d5a Mon Sep 17 00:00:00 2001
From: Thijs Schreijer
Date: Thu, 10 Apr 2025 10:29:39 +0200
Subject: Release v0.6.0 (#61)
---
docs/topics/03-terminal.md.html | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
(limited to 'docs/topics/03-terminal.md.html')
diff --git a/docs/topics/03-terminal.md.html b/docs/topics/03-terminal.md.html
index 7ce28af..ebaa8bb 100644
--- a/docs/topics/03-terminal.md.html
+++ b/docs/topics/03-terminal.md.html
@@ -93,6 +93,7 @@ up both platforms to make it work.
system.setconsoleflags (Windows)
system.setconsolecp (Windows)
system.setconsoleoutputcp (Windows)
+ system.detachfds (Posix)
system.setnonblock (Posix)
system.tcsetattr (Posix)
@@ -195,6 +196,7 @@ also not being echoed to the terminal (independent of the echo settings used wit
sys.setconsoleflags(io.stdin, sys.getconsoleflags(io.stdin) - sys.CIF_ECHO_INPUT - sys.CIF_LINE_INPUT)
sys.detachfds() local of_attr = sys.tcgetattr(io.stdin)
sys.tcsetattr(io.stdin, sys.TCSANOW, {
lflag = of_attr.lflag - sys.L_ICANON - sys.L_ECHO,
@@ -218,7 +220,7 @@ For an example see examples/
generated by LDoc 1.5.0
-
Last updated 2025-03-12 15:17:50
+
Last updated 2025-04-10 10:12:11