2017-11-06 Emacs news

| emacs, emacs-news

Links from reddit.com/r/emacs, /r/orgmode, /r/spacemacs, Hacker News, planet.emacsen.org, YouTube, the changes to the Emacs NEWS file, and emacs-devel.

You can view 2 comments or e-mail me at sacha@sachachua.com.

2 comments

Adam Kruszewski

2017-11-06T13:41:06Z

Thank you for your work and perseverance! :)

Christopher Browne

2017-12-06T18:48:59Z

Have you noticed the Rust work, in the form of remacs? https://github.com/Wilfred/...

It's a reimplementation of GNU Emacs where they are shifting the C code into Rust, so as to get the improved safety of stronger typing and such.

The hope is for it to provide a somewhat faster and easier to debug Elisp implementation, to encourage a larger population to work on the "compiled bits".

I have been using it for a couple months with decent results. I have a pretty large set of add-ons being managed via el-get, and they loaded into remacs with 1 line's worth of fixing deprecated functions. It "all just works" so far.

I did run into one issue; I use Tramp mode to ssh into VMs to edit things there, and found a bug in how remacs was using the Rusty implementation of Base64 encoding. That became issue #500 which was easily fixed within a day.

They are trying to "play well" with the existing 'official' GNU Emacs; they have been able to discover some bugs and pass them back, which seems like a decently positive community relationship.