ElmCast / elm-vim

Elm plugin for Vim
BSD 3-Clause "New" or "Revised" License
572 stars 102 forks source link

Docstrings aren't highlighted #193

Closed tankorsmash closed 3 years ago

tankorsmash commented 3 years ago

This is the code from the docstring docs

{-| Convert a list of characters into a String. Can be useful if you
want to create a string primarly by consing, perhaps for decoding
something.

    fromList ['e','l','m'] == "elm"
-}
fromList : List Char -> String
fromList = ...

and this is how it appears in my vim

image

I'd expect the docstring comment starting on line 1 to be grey.

tankorsmash commented 3 years ago

Hmm, I just disabled all my plugins except this one, and it appears to be working, so this seems to be on my end image

tankorsmash commented 3 years ago

Well score one for rubber ducking, it's an issue with https://github.com/luochen1990/rainbow thanks for reading.