mintty

A reliable way to detect the presence of a MinTTY console on Windows

https://github.com/RyanGlScott/mintty

Version on this page:0.1.1
LTS Haskell 22.13:0.1.4
Stackage Nightly 2024-03-14:0.1.4
Latest on Hackage:0.1.4

See all snapshots mintty appears in

BSD-3-Clause licensed by Ryan Scott
Maintained by Ryan Scott
This version can be pinned in stack with:mintty-0.1.1@sha256:6e0413ef37de141a781e38e79b723be80a3aafd0896ef23cabec74926187cd0f,2579

Module documentation for 0.1.1

Depends on 1 package(full list with versions):

mintty

Hackage Hackage Dependencies Haskell Programming Language BSD3 License Build Windows build

MinTTY is a Windows-specific terminal emulator for the widely used Cygwin and MSYS projects, which provide Unix-like environments for Windows. MinTTY consoles behave differently from native Windows consoles (such as cmd.exe or PowerShell) in many ways, and in some cases, these differences make it necessary to treat MinTTY consoles differently in code.

The mintty library provides a simple way to detect if your code in running in a MinTTY console on Windows. It exports isMinTTY, which does the right thing 90% of the time (by checking if standard error is attached to MinTTY), and it also exports isMinTTYHandle for the other 10% of the time (when you want to check is some arbitrary handle is attached to MinTTY). As you might expect, both of these functions will simply return False on any non-Windows operating system.

Changes

0.1.1 [2017-03-17]

  • Work around a serious bug on 32-bit Windows GHC that causes linker errors when mintty is used together with code that uses certain msvcrt functions, such as atan

0.1 [2017-01-30]

  • Initial release