You are here |
vxlabs.com | ||
| | | |
www.n16f.net
|
|
| | | | 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
|
|
| | | | The personal blog of Kris Jenkins, geek. | |
| | | |
davemq.github.io
|
|
| | | | 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
|
|
| | 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... |