💾 Archived View for idiomdrottning.org › cozify-window captured on 2024-05-10 at 11:24:26. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2023-12-28)
-=-=-=-=-=-=-
Here’s a li’l mini function for Emacs that when called sets the window width to one space wider than the current cursor position:
(defun cozify-window () (interactive) (shrink-window-horizontally (- (window-width) (current-column) 1)))
By window, I mean the panels in side of the frames.
I mean the things that split up your Emacs into left and right when you’ve done C-x 3 even in the TUI mode of Emacs.