elm.vim icon indicating copy to clipboard operation
elm.vim copied to clipboard

Vim plugin for the Elm programming language

Results 7 elm.vim issues
Sort by recently updated
recently updated
newest added

Hello, It seems that there is an issue regarding the indentation. Consider the following snippet, the cursor is represented by '^': ``` foo = bar ^ ``` Then if I...

I have this plugin installed as a git submodule and because the tags file would update every time vim started, this plugin always showed up as modified (with the same...

When using the plugin, it overrides my `tabstop` config by setting it to `8`. Here it is: https://github.com/lambdatoast/elm.vim/blob/master/indent/elm.vim#L20 Am I missing something? When I use tab, I would want it...

Elm supports long strings ala python ``` "normal string" """loooong string""" ``` The official docs underdefine what escapes, if any, are supported but I don't think it'd be wrong to...

How do I actually install this? I'm not great at vim, and the usual stuff I do with pathogen doesn't seem to load the plugin. Sorry for being a noob...

Hiya, IMHO `doc/tags` should be generated by the user (or Pathogen, Vundle, etc). Thank you, Brett

Something is wrong with the way `in` is handled. Say you have some code like this: ``` elm let a = False case a of False -> () ``` and...