Function: cider-find-dwim-other-window

cider-find-dwim-other-window is an interactive and byte-compiled function defined in cider-find.el.

Signature

(cider-find-dwim-other-window SYMBOL-FILE)

Documentation

Jump to SYMBOL-FILE at point, place results in other window.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-find.el
    (list (or (thing-at-point 'filename) ""))))  ; No prompt.

(defun cider-find-dwim-other-window (symbol-file)
  "Jump to SYMBOL-FILE at point, place results in other window."
  (interactive (cider--find-dwim-interactive "Jump to: "))
  (cider--find-dwim symbol-file 'cider-find-dwim-other-window t))