Planet Emacs: Emacs News, Packages, Articles, Videos & more
- Tweaking Emacs for Ruby Development
cross-posted from: https://lemmy.ml/post/1794013
> I decided to write-up some tips on how I've tweaked my Emacs for Ruby development after starting to write Ruby again for the first time in some time. I hope it's useful - feedback very welcome. > > My blog is also available as a Gemini Capsule, if that's your thing.
- A Clean Writing Environment
cross-posted from: https://lemmy.ml/post/956289
> c/o https://irreal.org/blog/?p=11279 > >
- Indexing Your Init File
cross-posted from: https://lemmy.ml/post/956286
> > James Dyer has a useful short post on indexing his init.el file. His scheme is simple. His init.el is broken into sections each of which starts with: > >
> ;; > ;; -> Section-name > ;; >
> > > Then he used occur to generate the actual index. Rather than call occur each time with the need to provide the regex, he wrote a 4-line function that does it for him. He doesn’t say whether he bound it to a key sequence but that, of course, is trivial. > > ... > ``` - Emacs Lisp shorthands as namespacing systemandreyorst.gitlab.io Emacs Lisp shorthands as namespacing system
In Emacs version 28 Emacs developers introduced so-called read symbol shorthands. If you’re interested in the rationale, feel free to search the Emacs developer mailing list for the discussion. However, it does seem that not everyone likes the idea of shorthands as a substitution for namespaces (or ...
- An Interview with Mickey Petersen, Author of Mastering Emacssyntopikon.substack.com An Interview with Mickey Petersen, author of Mastering Emacs
An interview with Mickey Petersen, author of Mastering Emacs Who are you, and what do you do? I'm Mickey Petersen. I live in London, UK. I'm a professional software developer, and I have been programming since I was around 10 years old. I did not have friends or family who knew much about computing,...
- Can I close all buffers related to Sly in one command on #Emacs?
I want to close all buffers with has "sly" in their name. Can I do something like this:
CLOSE buffer WHERE buffer.name LIKE '%sly%';