Hi,
I'm wondering if it's possible to ask slime to load something after a Lisp session has started. I've tried the following
(eval-after-load "slime" '(progn ... (slime-interactive-eval "...")))
But the expression seems to never get run. I've also tried
(progn (slime) (while (not (slime-connected-p)) (sleep-for 0 200)) (slime-interactive-eval "..."))
Which works, but is horrible in other ways.
Is there a good way to do this?
Thanks.