ElmCast / elm-vim

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

Elm 0.19 not supported #182

Open DestyNova opened 5 years ago

DestyNova commented 5 years ago

It appears that most of the plugin's features don't work with Elm 0.19. It complains that elm-make can't be found, but Elm 0.19 uses elm make instead.

aminnairi commented 5 years ago

Confirmed that ElmMakeMain is not working as it is using elm-make which is now elm make for the version 0.19 of Elm.

nrdxp commented 5 years ago

is there any plan to fix this? Elm 0.19 has been out for a year now and none of the features seem to work for me when using Elm 0.19

towc commented 4 years ago

cloning the repo locally, referring to it in the vimrc, and running these commands fixes at least elm-make for me:

find . -type f -exec sed -ri "s/(CheckBin\(')elm-make/\1elm/g" {} \;
find . -type f -exec sed -ri 's/([^(])elm-make/\1elm make/g' {} \;
git add . && git commit -m "urgh"

I'll try to make a PR, but I don't look forward to fixing the rest of the issues

towc commented 4 years ago

oh, it does appear https://github.com/Zaptic/elm-vim already fixed a lot of these issues