-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ANSI sequenced in GHCi prompt work only when \n is present in line #88
Comments
sorry, misposted |
Perhaps this issue could be re-opened, as it is a current issue with The native consoles on Windows 10 are ANSI-capable, and there is no longer any version of Windows that has mainstream support by Microsoft that is not ANSI-capable, although ANSI-capability needs to be 'turned on' because of backwards compatibility with consoles on legacy Windows. I think GHCi and A little knowledge is a dangerous thing, but when I disabled let fixEsc = id -- was: filter ((/= '\ESC') . baseChar)
in drawLineDiffWin (fixEsc xs1, fixEsc ys1) (fixEsc xs2, fixEsc ys2) then module Main where
import System.Console.Haskeline
main :: IO ()
main = runInputT defaultSettings loop
where
prompt = "\ESC[34m\STXBlue\ESC[39m\STX\n\ESC[31m\STXRed\ESC[39m\STX: "
loop :: InputT IO ()
loop = do
minput <- getInputLine prompt
case minput of
Nothing -> pure ()
Just "quit" -> pure ()
Just input -> do outputStrLn $ "Input was: " ++ input
loop |
This reverses commit f827f10 of 11 September 2010 (about 5 years before the November 2015 Update to Windows 10 made the native consoles on Windows 10 ANSI-capable).
This reverses commit f827f10 of 11 September 2010 (about 5 years before the November 2015 Update to Windows 10 made the native consoles on Windows 10 ANSI-capable).
This reverses commit f827f10 of 11 September 2010 (about 5 years before the November 2015 Update to Windows 10 made the native consoles on Windows 10 ANSI-capable).
This reverses commit f827f10 of 11 September 2010 (about 5 years before the November 2015 Update to Windows 10 made the native consoles on Windows 10 ANSI-capable).
For ANSI-capable terminals, this reverses commit f827f10 of 11 September 2010 (about 5 years before the November 2015 Update to Windows 10 made the native consoles on Windows 10 ANSI-capable). It uses the same logic as the ansi-terminal package to determine if the terminal is ANSI-capable.
For ANSI-capable terminals, this reverses commit f827f10 of 11 September 2010 (about 5 years before the November 2015 Update to Windows 10 made the native consoles on Windows 10 ANSI-capable). It uses the same logic as the ansi-terminal package to determine if the terminal is ANSI-capable.
For ANSI-capable terminals, this reverses commit f827f10 of 11 September 2010 (about 5 years before the November 2015 Update to Windows 10 made the native consoles on Windows 10 ANSI-capable). It uses the same logic as the ansi-terminal package to determine if the terminal is ANSI-capable.
For ANSI-capable terminals, this reverses commit f827f10 of 11 September 2010 (about 5 years before the November 2015 Update to Windows 10 made the native consoles on Windows 10 ANSI-capable). It uses the same logic as the ansi-terminal package to determine if the terminal is ANSI-capable.
For ANSI-capable terminals, this reverses commit f827f10 of 11 September 2010 (about 5 years before the November 2015 Update to Windows 10 made the native consoles on Windows 10 ANSI-capable). It uses the same logic as the ansi-terminal package to determine if the terminal is ANSI-capable. Copied from https://github.com/judah/haskeline/blob/b564d7ae94d1e1af13351dd912a8b20c321d2ab4/System/Console/Haskeline/Backend/Win32.hsc
I found this link over internet and think there's a bug somewhere here: https://github.com/judah/haskeline/blob/3bf2b621685fc795f0dc3f3196728ccea492d42b/System/Console/Haskeline/LineState.hs#L109
I've tested almost everything with my new 8.4.3 Haskell installation on Windows 10 and it seems that
\ESC[
color sequence works only when\n
finishes the line; in any other situation (if you want to color the prompt without\n
ending) the ghci prompt outputs the ANSI sequence text as it is and does not color the string.The text was updated successfully, but these errors were encountered: