halohalospecial / atom-elmjutsu

A bag of tricks for developing with Elm. (Atom package)
https://atom.io/packages/elmjutsu
MIT License
192 stars 24 forks source link

Adding space makes atom freeze #54

Closed rubedojr closed 7 years ago

rubedojr commented 7 years ago

In my elm project I have a file with the following code:

type BankAccountType {- Add space here -}
    { Type : Int
    , Description : String
    }

If I add a space at the end of the first line (in order to add the missing "=") atom freezes and I have to close it. I tried using other characters and was only able to cause the error with a space. When I disable elmjutsu I can add the space with no problems but when I enabled elmjutsu again the error persisted.

I'm on Windows 10, using atom 1.14.1 and elmjutsu 3.5.0

The complete file for reference: BankAccountType.txt