Re: Wrapper function for slime

2009-04-22 Thread Craig McDaniel
Thanks Phil. I'll try it out. It's about time I started learning about Maven anyway. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com To u

Re: Wrapper function for slime

2009-04-21 Thread Phil Hagelberg
Craig McDaniel writes: > Correction: > > (defun reset-swank () > > (defun run-slime (dir) Here's what I use: (plagiarized from Tim Dysinger) (defun slime-project (path) "Setup classpaths for a maven/clojure project & refresh slime" (interactive "GPath: ") (let ((original-dir default-dir)

Re: Wrapper function for slime

2009-04-21 Thread Craig McDaniel
Correction: (defun reset-swank () "Because changing swank-clojure-extra-classpaths is not enough to force a new instance of slime to use it." (interactive) (setq slime-lisp-implementations (assq-delete-all 'clojure slime-lisp-implementations)) (add-to-list 'slime-lisp-implementati