Explore >> Select a destination


You are here

vxlabs.com
| | www.n16f.net
8.4 parsecs away

Travel
| | The SLIME Emacs package for Common Lisp supports cross-referencing: one can list all references pointing to a symbol, move through this list and jump to the source code of each reference. Removing automatic reference jumps While cross-referencing is very useful, the default configuration is frustrating: moving through the list in the Emacs buffer triggers the jump to the reference under the cursor. If you are interested in a reference in the middle of the list, you will have to move to it, opening multip...
| | blog.jenkster.com
10.4 parsecs away

Travel
| | The personal blog of Kris Jenkins, geek.
| | davemq.github.io
11.0 parsecs away

Travel
| | I keep my Emacs config files for my home systems and my work systems in a common Git repository, in different branches. I started doing this several years ago, but paused updating the repository for a while. I decided to
| | lambdaland.org
21.4 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...