I am using sbcl with GNU Emacs 24.3.1 and the 2012-04-14 release of SLIME, on Arch Linux to write some Common Lisp code. When writing an expression, if I type, for example
(if
the minibuffer will display
(if TEST THEN &OPTIONAL ELSE)
Is there a mode or SLIME setting that can make the argument that I'm currently editing be highlighted in the minibuffer? For example, if I type
(if (> x y)
it would be great if
(if TEST *THEN* &OPTIONAL ELSE)
or something similar was displayed in the minibuffer.
(Lisp ElDoc ...)or(Lisp Autodoc ...). - Alexeygame.lisp 86% (115, 15) (Lisp [? sbcl])- Daniel Neel(slime-setup '(...))? - Alexey(setq inferior-lisp-program "/usr/bin/sbcl") (add-to-list 'load-path "~/.emacs.d/slime-2012-04-14/") (require 'slime) (slime-setup)- Daniel Neel