OhmNomNom / thyme

A fork of mintty, for the modern world
GNU General Public License v3.0
0 stars 0 forks source link

Implicit cr on every linefeed #253

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Adding putty's 'Implicit CR on every LF' function to mintty.

Original issue reported on code.google.com by lote...@gmail.com on 26 Mar 2011 at 12:33

GoogleCodeExporter commented 9 years ago
That function is provided by Cygwin's terminal driver, as controlled by stty's 
"onlcr" option. This is enabled by default.

Additionally, mintty supports the VT100 "Line Feed/New Line Mode" (LNM) as 
described at http://vt100.net/docs/vt100-ug/chapter3.html. CRLF mode is enabled 
with '\e[20h' and disabled with '\e[20l'.

Original comment by andy.koppe on 27 Mar 2011 at 6:01