Ed Kelly
Ed Kelly
Hi Matt, I love this plugin even more than elm-test-runner. I'm running version 0.2.0, and I've just noticed one issue with counting external references for union types whose constructors are...
Given this test file: ```elm module MyTest exposing (..) import Expect import Test exposing (..) add1 : Int -> Int add1 n = n + 1 suite : Test suite...
Thank you so much for this library! I'm not sure if I just missed this, or if it's a bad idea, or if there's a better way to achieve it...
I have a Gleam app inside an Elixir/Phoenix project, and I'm using the MixGleam project to compile the Gleam code when I start up the Elixir application. I can compile...
In Gleam 0.12.0: ```gleam type This = That type That { That } ``` gives: ``` error: Unknown type ┌─ /home/ed/dev/gleam_bugs/gleam_bugs/src/gleam_bugs.gleam:2:3 │ 2 │ That │ ^^^^ did you mean...
In Gleam 0.12.0 ```gleam fn something() -> Bool { let some_long_variable_name = 1 let some_other_long_variable_name = 2 let some_third_long_variable_name = True let some_fourth_long_variable_name = False some_long_variable_name > some_other_long_variable_name || some_third_long_variable_name...
This looks really interesting! I am an Elixir noob who wrote his first GenServer last weekend, so this feedback may be very naive and stupid; please ignore it if so....
## Expected Behavior If the language server tries to run elm-review, but it fails (for example, because there's a mismatch between the elm-review npm package version and the Elm package...
As discussed on Discord with @lpil : > We could also do with something like https://erlang.org/doc/man/timer.html#send_interval-2 I'm guessing an implementation could look something like this: ```gleam external fn erlang_send_interval(Int, Pid,...