Gears

Results 4 issues of Gears

I found it quite annoying that the extension would create a `.vscode` folder and `settings.json` file in every project I opened with VSCode, so I made it only create it...

Closes #2978 Let me summarise what I've done: - BadName errors are now no longer reported in the lexer. The lexer treats all previous bad names as valid. - The...

Closes #2958 Implements a code action which converts: ```gleam let assert Ok(foo) = bar() ``` into: ```gleam let foo = case bar() { Ok(foo) -> foo Error(e) -> panic as...

For example, turning: ```gleam result.map(Ok(1), fn(x) { io.debug(x) }) ``` Into: ```gleam use x

help wanted
priority:medium