forgot to show how to intall the new emacs support. This is what my .emacs looks like, you dont have to bind keys if you dont want.

  (add-to-list 'load-path "/PATH/TO/slime/")
  (require 'slime)
  (slime-setup)
  (load "/PATH/TO/cm.el")
  (global-set-key (kbd "<f13>") 'slime-toggle-repl)
  (define-key slime-mode-map "\C-x\C-e" 'slime-eval-anything)
  (define-key slime-mode-map (kbd "TAB") 'slime-indent-anything)
  (define-key slime-mode-map (kbd "\C-c\C-dc") 'cm-lookup)

then -- assuming your inferior-lisp-program starts cm -- do
        M-x cm

this stuff is new so there will be some issues. but looking up cm doc at point is very cool!

_______________________________________________
Cmdist mailing list
[email protected]
http://ccrma-mail.stanford.edu/mailman/listinfo/cmdist

Reply via email to