this post was submitted on 17 Nov 2023
0 points (50.0% liked)

Emacs

305 readers
1 users here now

A community for the timeless and infinitely powerful editor. Want to see what Emacs is capable of?!

Get Emacs

Rules

  1. Posts should be emacs related
  2. Be kind please
  3. Yes, we already know: Google results for "emacs" and "vi" link to each other. We good.

Emacs Resources

Emacs Tutorials

Useful Emacs configuration files and distributions

Quick pain-saver tip

founded 1 year ago
MODERATORS
top 7 comments
sorted by: hot top controversial new old
[–] MotherCanada@alien.top 1 points 10 months ago (2 children)

Is this still being developed? I remember there was some excitement with it early on but haven't heard much since. Looking at the readme, it seems a bunch of its features (and value adds) are no longer maintained or just straight up don't work anymore. Seems like there just weren't enough javascript developers interested in Emacs to help this project continue.

[–] rxorw@alien.top 1 points 10 months ago (1 children)

I think the excitement was from an other (now defunct) project called REmacs, one of it's main goals was replacing the C Core with Rust. Emacs Lisp is old and has its problems, but I prefer it over JS/TS as extending language for Emacs.

[–] codemuncher@alien.top 1 points 10 months ago

I recently had cause to try to load some code into a JavaScript repl from a typescript project. Man what a nightmare.

The js ecosystem is very difficult to work with. Many options and browser issues are intertwined. Clever ideas abound… but that might be part of the issue.

JavaScript wouldn’t be an improvement over elisp imo. The theory is that a more accessible language would bring users, but many devs aren’t interested in anything but getting the job done with vs code and then going home.

And honestly the ridiculous quickness in which things get deprecated despite no replacement is a bad developer mindset.

[–] camber-weaver@alien.top 1 points 10 months ago

Out of curiosity I installed the .debs. They appear to have been empty as a 'dpkg -L' only shows two directories under /usr/local.

I see recent commits but it appears as though the builds are broken at the least.

[–] jsadusk@alien.top 1 points 10 months ago (1 children)

I would love to modernize the emacs core, but rewrites are usually destined to fail, more likely the older the project being rewritten is. And emacs is very old.

How about this approach. Emacs only got dynamic modules in v26, fivish years ago? All the junk compiled into the core was done so because there wasn't something like dynamic modules. Someone (I hope I'm not signing myself up for this) should do a project to move all functionality other than the lisp engine itself and maybe some basic primitives out into dynamic modules. When the lisp engine is isolated via a stable abi, then you can redesign it without fear. Similarly with any of the modules themselves.

[–] Pay08@alien.top 1 points 10 months ago

Unlikely to happen. From what I remember, even newer things (treesitter) aren't loaded as modules but are instead compiled into the core.

[–] Under-Estimated@alien.top 1 points 10 months ago

Isn’t this just vscode?