Skip to content
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

Closed
cpkio opened this issue Aug 6, 2018 · 3 comments
Closed

ANSI sequenced in GHCi prompt work only when \n is present in line #88

cpkio opened this issue Aug 6, 2018 · 3 comments

Comments

@cpkio
Copy link

cpkio commented Aug 6, 2018

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.

@cpkio
Copy link
Author

cpkio commented Aug 8, 2018

sorry, misposted

@cpkio cpkio closed this as completed Aug 8, 2018
@mpilgrem
Copy link

Perhaps this issue could be re-opened, as it is a current issue with haskeline-0.7.5.0 on Windows 10. (I also thought, initially, that it was a GHCi 8.6.5 or 8.8.1 issue - https://gitlab.haskell.org/ghc/ghc/issues/17512.)

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 stack exec -- [command] turns it on.

A little knowledge is a dangerous thing, but when I disabled fixEsc in drawLineDiff (in module System.Console.Haskeline.Backend.Win32) as follows:

let fixEsc = id -- was: filter ((/= '\ESC') . baseChar)
in  drawLineDiffWin (fixEsc xs1, fixEsc ys1) (fixEsc xs2, fixEsc ys2)

then haskeline worked as expected. I tested it with:

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

mpilgrem added a commit to mpilgrem/haskeline that referenced this issue Dec 8, 2019
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).
@judah
Copy link
Collaborator

judah commented Dec 29, 2019

Thanks @mpilgrem. What you're describing appears to be a separate issue than this bug, so I've split it out into #130.

mpilgrem added a commit to mpilgrem/haskeline that referenced this issue Jun 12, 2022
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).
aryairani pushed a commit to unisonweb/haskeline that referenced this issue Jul 27, 2022
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).
mpilgrem added a commit to mpilgrem/haskeline that referenced this issue Aug 18, 2022
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).
mpilgrem added a commit to mpilgrem/haskeline that referenced this issue Aug 20, 2022
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.
mpilgrem added a commit to mpilgrem/haskeline that referenced this issue Aug 20, 2022
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.
mpilgrem added a commit to mpilgrem/haskeline that referenced this issue Aug 20, 2022
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.
mpilgrem added a commit to mpilgrem/haskeline that referenced this issue Aug 20, 2022
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.
jneira added a commit to jneira/haskeline that referenced this issue Dec 18, 2022
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants