You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Tue, 10 Nov 2020 at 7:30 pm, sheaf ***@***.***> wrote:
Hi, thanks for the bug report.
This problem is due to a conflict between list comprehension and
quasi-quotations. To fix the highlighting, you need to add a space around
x, e.g.
[ x | x<-list, p x ]
Note that the same issue exists on GitHub:
-- using list comprehensionmyFilter :: (a-> Bool) -> [a] -> [a]
myFilter p list [x| x<- list, px]
-- not highlighted
f :: x -> x
f x = x
--
{-
-}
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#177 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ANTMME3BLXZAJFEXUCQPPALSPD22NANCNFSM4TQBUGPQ>
.
The text was updated successfully, but these errors were encountered: