July 10th 2026 - Interesting Finds

Emacs align code using regex

We can use (align-regexp) to align code (or other things) in Emacs.

Input:

test = 1
another = 2
co = 3

(align-regexp) called with =

Output:

test	= 1
another = 2
co	= 3