Gears
Gears
That's all taken care of now
Looking into this, this actually looks like two different issues: - The first is when a line contains a multibyte UTF-8 character, which causes all LSP ranges to be incorrect,...
It doesn't feel right to me to have a code action to change the formatting of something. Code actions are for changing the meaning or semantics of a program, not...
To my understanding, this is a limitation of erlang. So should this emit a compiler error when trying to compile?
Doing some testing of my own, I can't seem to get it to use variables from the pattern, even when defined in the bit array itself. Am I doing something...
That's strange. On my machine I get: ``` : variable 'A' is unbound % 10| -> _assert_subject; % | ^ ```
That's all the code I have, if wrapped in a main function: ```gleam pub fn main() { let assert = } ``` That's my whole project
It compiles to this for me: ```erlang -module(testing_gleam). -compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]). -export([main/0]). -spec main() -> bitstring(). main() -> _assert_subject = , = case _assert_subject of -> _assert_subject; _assert_fail ->...
I've left a comment on that PR explaining it.
I'm working on this!