We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
So I have the same bug that is described here with a slightly different implementation. I have a prompt that is set by:
:set prompt "%s λ> "
which gives a prompt that looks like:
GHCi, version 7.6.3: http://www.haskell.org/ghc/ :? for help Loading package ghc-prim ... linking ... done. Loading package integer-gmp ... linking ... done. Loading package base ... linking ... done. Prelude λ>
I fixed it by modifying your regexp from here to this (adding an optional λ at the end of the first part before the >:
λ
>
"^\\*?[[:upper:]][\\._[:alnum:]]*\\(?: \\*?[[:upper:]][\\._[:alnum:]]*\\)*\\( λ\\)?> \\|^λ?> $"
I'll send the pull request in a second.
The text was updated successfully, but these errors were encountered:
Additional fix for ghci prompt inferior-haskell-mode
632bb04
This is a fix for [this issue](haskell#257) which is conceptually the same as [this older issue](haskell#176)
23b385b
This is a fix for [this issue](#257) which is conceptually the same as [this older issue](#176)
Merged now.
Sorry, something went wrong.
No branches or pull requests
So I have the same bug that is described here with a slightly different implementation. I have a prompt that is set by:
which gives a prompt that looks like:
I fixed it by modifying your regexp from here
to this (adding an optional
λ
at the end of the first part before the>
:I'll send the pull request in a second.
The text was updated successfully, but these errors were encountered: