Richard Carlsson

Results 43 comments of Richard Carlsson

Yeah, it happens when you're cargo cult programming and trying to get something to work by imitating someone elses rebar.config. :-) It's the user who is to blame, but right...

Seems to me that the only thing needed is to set lsp-keymap-prefix before loading lsp-mode instead of the other way around. ``` (setq lsp-keymap-prefix "C-c l") (use-package lsp-mode) ``` Works...

No, the TODOs are meant for doing later, they're not blocking anything. But this code needs to find a home first, and I'm intending to do the work on it....

That would probably be relatively easy to do, just adapting the existing tests and checking that the round-tripped code looks the same, so yes.

I think this is the right home, because the erlfmt format doesn't officially exist outside this app. By having the conversion functions here, nobody should need to know about it...

I'm currently pondering what changes I can make in syntax tools that will preserve compatibility with existing code that's using it, but being better at representing the same things under...

It is of course possible, just a bit annoying and expensive to do an extra pass rewriting the whole AST for this.

Hi Sargun! It's probably a good idea, but so as to ensure that users can start mnesia without having to manually start eleveldb first, please also change the call to...

> 1. What happens when you are binding the variable for the first time but it is repeated? > ``` > {X, X} = {ok, ok} > ``` > >...