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
One of the changes on the table for 0.17 is the following tweak to module declarations:
-- OLDmoduleFoo (a, b, c) where-- NEWmoduleFooexposing (a, b, c)
The current syntax highlighting freaks out if there is no where at the end and messes up highlighting for the whole file. Is there any way it can be made more flexible in the lead up to 0.17 just for me? Like is there something I can tweak locally even?
I currently have to do module Whatever exposing (..) -- where to make both Elm and the syntax highlighter happy, which is doable, but I risk checking this kind of weird thing in.
The text was updated successfully, but these errors were encountered:
OK, thanks for the heads up. I'll change this very soon.
On Thu, Apr 7, 2016 at 4:58 AM, Evan Czaplicki [email protected]
wrote:
One of the changes on the table for 0.17 is the following tweak to module
declarations:
-- OLDmodule Foo (a, b, c) where
-- NEWmodule Foo exposing (a, b, c)
The current syntax highlighting freaks out if there is no where at the
end and messes up highlighting for the whole file. Is there any way it can
be made more flexible in the lead up to 0.17 just for me? Like is there
something I can tweak locally even?
I currently have to do module Whatever exposing (..) -- where to make
both Elm and the syntax highlighter happy, which is doable, but I risk
checking this kind of weird thing in.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub #99
One of the changes on the table for 0.17 is the following tweak to
module
declarations:The current syntax highlighting freaks out if there is no
where
at the end and messes up highlighting for the whole file. Is there any way it can be made more flexible in the lead up to 0.17 just for me? Like is there something I can tweak locally even?I currently have to do
module Whatever exposing (..) -- where
to make both Elm and the syntax highlighter happy, which is doable, but I risk checking this kind of weird thing in.The text was updated successfully, but these errors were encountered: