;;; -*- lexical-binding: t -*- ;; ;; this file: ;; https://dataswamp.org/~incal/emacs-init/window-other.el (defmacro with-other-window (&rest body) `(with-selected-window (next-window) ,@body)) (defun apply-in-other-window (fn &rest args) (with-other-window (apply fn args) )) (provide 'window-other)