Assigning your copyright to the FSF helps defend the GPL and keep software free. Thank you Yohei Sasaki for assigning your copyright to the FSF! More at: https://u.fsf.org/463 #Emacs #CopyrightAssignments
Free Software Supporter -- Issue 203, March 2025 — Free Software Foundation — Working together for free software

(setq org-startup-folded t) makes Org files open with all headlines folded, my attention-deficient preference.

But then diffs are hidden when comparing Org files with ediff! Here is my ediff config:

(use-package ediff
:custom
(ediff-split-window-function 'split-window-horizontally)
(ediff-window-setup-function 'ediff-setup-windows-plain)
:hook
;;; Start Org files in maximally-unfolded view
(ediff-prepare-buffer . #'outline-show-all))

#emacs #OrgMode #ediff

today i learned, que pour la GUI d' #Emacs il ne semble pas du tout exister de traduction. Les configurations autour des notions de langue ne semblent s'appliquer que dans les windows, modeline, et buffers. Genre vraiment les types ça fait 40 ans qu'ils se sont dit MURICA et voilà.

#translation #passionTraduction

After a couple-week hiatus, I'm back to #Emacs! This time I discover the joys of text-based browsing in the Emacs Web Wowser! A.k.a. EWW!

#Linux #GNULinux #FOSS

http://perotti.org/2026/04/09/eww-a-web-in-my-editor/

EWW! A Web in My Editor!

OK, I know, I know – Emacs is not just an editor, but I had to come up with something for the title, so here we are. Case in point – Emacs has a web browser built into it. Technically t…

Here's The Beef

So I've been finding, in my dives into using Emacs and Emacspeak more, that Emacspeak actually uses some tools that are quite old and abandonned. TCLX isn't shipped in Arch Linux anymore, and it looks like neither is IWGetID in Fedora. Not all tools age well without maintinence, sadly, especially digital ones. With Tclx, AI was able to work around it by polyfilling the needed functions into TCL scripts. That's the most important part, since the speech engines Emacspeak uses, like ESpeak and Outloud and DecTalk, all rely on TCLX.

#tcl #tclx #emacs #emacspeak #linux #foss #accessibility #blind

@kickingvegas TIL. I had no idea Org had such a function, but of course it does..

Inspired by this I whipped up a quick embark action for calling it on an Org timestamp:

(defun viiru/embark-timestamp-to-now (ts)
"Display and kill difference between timestamp and today."
(interactive "sTimestamp: ")
(let ((res (format "%d" (org-timestamp-to-now ts))))
(message "Difference is %s days" res)
(kill-new res)))

(defvar-keymap embark-org-timestamp-map
:doc "Embark actions for org timestamps."
:parent embark-general-map
"t" #'org-toggle-timestamp-type
"d" #'viiru/embark-timestamp-to-now)

(add-to-list 'embark-keymap-alist '(org-timestamp . embark-org-timestamp-map))

#TIL #emacs #orgmode

An offline-friendly Elfeed web UI

https://infosec.pub/post/44710316

An offline-friendly Elfeed web UI - Infosec.Pub

Lemmy

An offline-friendly Elfeed web UI - Noetic Nought

I want to read articles from my RSS subscriptions on my phone without signing up to a hosted service or running a public server. Elfeed, the Emacs feed reader, already lets me manage my subscriptions and read from within Emacs. It comes with an experimental web UI, but needs the server (running on my laptop) to be accessible whenever I want to read. My phone becomes useless the moment my laptop sleeps.

@hell Debian GNU/Linux & Gnome.

My #Emacs init is exported from an Org file, so it is pretty well organised for my purposes with comments/links etc. There's also an archive section for stuff I might want to use again or draw inspiration from.

I don't change it much these days apart from export settings. I tend to use the built-in stuff over external packages. I find this keeps things more steady. The last major thing I did was to switch to Black in Eglot for Python, & that was a while back.

Embedded WebKit Widgets (GNU Emacs Manual)

Embedded WebKit Widgets (GNU Emacs Manual)