[CM] how to install

Rick Taube taube@uiuc.edu
Sat, 14 Jan 2006 16:19:32 -0600


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!