Function: cider-map-connections
cider-map-connections is a function alias for cider-map-repls, defined
in cider-session.el.
This function is obsolete since 2.0.0; use cider-map-repls instead.
Signature
(cider-map-connections WHICH FUNCTION)
Documentation
Call FUNCTION once for each appropriate REPL as indicated by WHICH.
The function is called with one argument, the REPL buffer. The appropriate
REPLs are found by inspecting the current buffer. WHICH is either one of
the following keywords or a list starting with one of them followed by names of
operations that the REPL is expected to support:
:auto - Act on the REPLs whose type matches the current buffer. In
cljc files, mapping happens over both types of REPLs.
:clj (:cljs) - Map over clj (cljs)) REPLs only.
:clj-strict (:cljs-strict) - Map over clj (cljs) REPLs but signal a
user-error in clojurescript-mode (clojure-mode). Use this for
commands only supported in Clojure (ClojureScript).
Error is signaled if no REPL buffers of specified type exist in current
session.
Aliases
cider-map-connections (obsolete since 2.0.0)