sorentwo 4 days ago

The architecture is remarkable. The lengths they’ve gone to for language version compatibility, and protecting app namespaces is especially impressive.

https://github.com/elixir-lang/expert/blob/main/pages/archit...

  • nesarkvechnep 3 days ago

    What are namespaces in Elixir?

    • jorams 3 days ago

      Namespaces aren't so much a concept in Elixir, but this refers to the names used for things like modules. Expert will rewrite the code of its "engine" so that the engine's code and dependencies and those of the application it is embedded into don't overlap.

ashton314 4 days ago

Oo I’m excited for this. The old official language server is fine—it does its job on most of the code bases I’ve worked on, but occasionally I will do something funny that makes the compiler slow down and that pummels the LS performance. I hope this works out some of the kinks that occasionally would make elixir-ls slow.

  • mtndew4brkfst 3 days ago

    Nit: there has never been an official LSP implementation until now, only community-authored. Even now no Dashbit employees or language core members are directly involved in this project in an ongoing basis.

    IMO that contributes powerfully to the quality of the experiences of using any of the options.

gonglexin 3 days ago

I’ve been switching between different LSP implementations for Elixir—ElixirLS, Lexical, next-ls—and have been following Expert for a while. Really looking forward to trying it out!

That said, the only thing that feels a bit off to me is the name “Expert.” It comes across slightly arrogant or presumptuous—like it’s implying it’s the only “expert” in the room. Maybe something more neutral would’ve been better?

Still, excited to see what the official tooling brings!

  • lionkor 3 days ago

    It's not an AI tool. It's an LSP. It is the expert in the room, because it's not a random word generator, not smart, it just follows the rules that the language has.

  • phinnaeus 3 days ago

    How did you find out about it in the first place? I remember seeing the Elixir blog post announcing the LSP project ages ago and then nothing since then.

    • buzzerbetrayed 3 days ago

      Do you frequent elixirforum.com? That’s where the elixir community resides. Jose and Chris post frequently there. As well as maintainers of popular libraries.

  • atonse 3 days ago

    I found the name to be perfect. Just a little fun. It also goes with the ex-prefix you see in libs sometimes.

  • heeton 3 days ago

    You're overthinking it. I'd rather have interesting than milquetoast.

  • SwiftyBug 3 days ago

    How about "Fairly Knowledgeable, Always Humbly Ready to Learn from Others"?

    FKAHRLO for short.

  • vendiddy 3 days ago

    how about "NotExpert"

NeutralForest 3 days ago

Cool to see there's a long term plan for the language and the ecosystem!

epiccoleman 4 days ago

Oh I'm excited for this. Editor support for elixir has never been quite as good as I'd like. I'm really happy to see they're investing in this - no lang with as consistently great a developer experience as elixir should be without a proper, official, well supported lang server.

Can't wait to try it out!

st3fan 3 days ago

What does "official" mean? Is it an official elixir-language project? I don't see Jose Valim as one the contributors.

vittore 4 days ago

Interesting choice to use just

  • mtndew4brkfst 4 days ago

    It has both a justfile and a makefile at the root, even. Most of us seem to want to use it to throw make away entirely.

    That said, I consider `just` very language-agnostic and useful because of that, and I consider mix pretty bad at any workflow needs that isn't directly concerned with BEAM.

    • zamalek 4 days ago

      It's not technically a make replacement (make does do things like incremental build management etc.), but it just goes to show how bad the DX of make is.

      • 0x457 4 days ago

        IMO 'just' replaces make where make shouldn't be used - generic task runner.

        • nesarkvechnep 3 days ago

          Correct. Make should be used with the filesystem, minimising PHONY.

    • MangoToupe 4 days ago

      I think it's hard for me to name better software than make. TeX, maybe? that seems like an insanely high bar to clear.

      • mtndew4brkfst 3 days ago

        I would say there's an ocean of software with better UX than those two, so it all comes down to what axis you measure on.

  • keeganpoppen 4 days ago

    i'm a pretty big fan of just, personally, but do not consider that to be the world's most well-considered position by any means...

benjreinhart a day ago

Woo super excited for this. Is anyone working on the official vscode extension so we don't have to build and hook that up ourselves, or is that up for grabs still?

nivertech 3 days ago

No MCP support?

  • 0x696C6961 3 days ago

    Wouldn't it make more sense to have a single MCP -> LSP adapter rather than having each LSP implement it?

    • nivertech 3 days ago

      Makes sense, except:

      1. too many layers and worse DX

      2. harder realtime updates

      • buzzerbetrayed 3 days ago

        Have you tried Todewave? By far the best DX I’ve seen