[slime-devel] other-window functions

One thing that I miss in slime is "other-window" versions of functions such as `slime-edit-fdefinition'. ------------------------+----------------------------------------------------- Christian Lynbech | christian #\@ defun #\. dk ------------------------+----------------------------------------------------- Hit the philistines three times over the head with the Elisp reference manual. - petonic@hal.com (Michael A. Petonic)

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
participants (2)
-
Christian Lynbech
-
Sean O'Rourke