/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

lmno.lol
| | blog.dornea.nu
8.3 parsecs away

Travel
| | [AI summary] The post provides Emacs Lisp code snippets and instructions for tasks like removing empty lines, tagging headers, and capturing links within the Org mode.
| | bnbeckwith.com
7.0 parsecs away

Travel
| | [AI summary] A guide on using Emacs's built-in documentation to find existing functionality for opening files in separate windows rather than creating custom wrappers.
| | jao.io
4.9 parsecs away

Travel
| | [AI summary] The author shares a custom Emacs Lisp function designed to quickly jump to a buffer with a specific major mode, highlighting its utility in reducing boilerplate code.
| | lambdaland.org
23.7 parsecs away

Travel
| Are you tired of having a particular buffer pop open in the wrong direction? Do you wish, for example, that the Racket REPL buffer showed up on the right in a vertical split, rather than below in a horizontal one? Look no further. I give you, display-buffer-alist: (add-to-list 'display-buffer-alist '("\\*Racket REPL \\*" (display-buffer-in-direction) (direction . right))) That little snippet will make sure when you hit C-c C-k inside of a racket-mode buffer, a REPL will pop up on the right-side instead o...