Christian Lynbech christian.lynbech@ericsson.com writes:
One thing that I miss in slime is "other-window" versions of functions such as `slime-edit-fdefinition'.
I find this works for most ordinary commands:
(defun other-windowize (fn) `(lambda () (interactive) (switch-to-buffer-other-window (save-window-excursion (call-interactively ',fn) (current-buffer)))))
/s