How to stop lex from replacing characters as a sign?

I am using leksah version 13.3.3.0. When I have a haskell line like this:

let s = "¬" :: String

in fact, the source file is not like that. If I open the source file in emacs, it reads the following:

let s = "not" :: String

How can I stop this leksah behavior?

+4
source share
1 answer

You probably have the "ToCandy" option installed in your configurations. Menu-> Congifuration-> ToCandy.

+1
source

Source: https://habr.com/ru/post/1537365/


All Articles