Function: cider--open-other-window-p

cider--open-other-window-p is a byte-compiled function defined in cider-common.el.

Signature

(cider--open-other-window-p ARG)

Documentation

Test prefix value ARG to see if it indicates displaying results in other window.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-common.el
(defun cider--open-other-window-p (arg)
  "Test prefix value ARG to see if it indicates displaying results in other window."
  (let ((narg (prefix-numeric-value arg)))
    (pcase narg
      (-1 t) ; -
      (16 t) ; empty empty
      (_ nil))))