!!! Note Because connections map one-to-one to REPL buffers, for the purpose of this section we use "REPL" and "connection" interchangeably. ## Sessions CIDER maintains a grouped view of opened connections through [Sesman] sessions. Each session is a collection of connections which share the same nREPL server. Start new sessions with - C-c C-x j j `cider-jack-in-clj` - C-c C-x j s `cider-jack-in-cljs` - C-c C-x j m `cider-jack-in-clj&cljs` - C-c C-x c j `cider-connect-clj` - C-c C-x c s `cider-connect-cljs` - C-c C-x c m `cider-connect-clj&cljs` Add new REPLs to the current session with - C-c C-x s j `cider-connect-sibling-clj` - C-c C-x s s `cider-connect-sibling-cljs` Session life-cycle management commands live on the [Sesman] map (C-c C-s) - C-c C-s s `sesman-start` - C-c C-s r `sesman-restart` - C-c C-s q `sesman-quit` The command `sesman-start` wraps around all of the aforementioned `jack-in` and `connect` commands. You can also invoke same functionality with M-x `cider` or C-c M-x. To quit or restart individual connections use cider commands - C-c C-q `cider-quit` - C-c M-r `cider-restart` ## Context Links Sessions can be linked to contexts (projects, directories and buffers) - C-c C-s b `sesman-link-with-buffer` - C-c C-s d `sesman-link-with-directory` - C-c C-s p `sesman-link-with-project` - C-c C-s u `sesman-unlink` ## Friendly Sessions [Sesman] defines "friendly" session to allow for on-the-fly operation on sessions from contexts where there are no explicit links. In CIDER friendly sessions are defined by the project dependencies. For example when you use `cider-find-var` (M-.) to navigate to a var definition in a dependency project the current project's session becomes a friendly session for the dependency. When you evaluate some code from a dependency project and there are no explicit links in that project, the most recent friendly session is used to evaluate the code. Explicitly linked sessions have precedence over the friendly sessions. You can disable friendly session inference by customizing `sesman-use-friendly-sessions`. ## Displaying Session Info Get info on all linked and friendly sessions in the current context with C-c C-s i (`sesman-info`). On C-u, display info on all CIDER sessions. For the connection specific information use CIDER's built-in `cider-describe-connection` (C-c M-d). An interactive view of all CIDER sessions is available through the `sesman-browser` (C-c C-s w). ## Current Session All CIDER commands (evaluation, completion, switching to REPL etc.) operate on the relevant REPL within the current session. The current session is the most relevant session among all linked session (or friendly sessions when no links exist). Session relevance is decided by the specificity of the linked contexts and recency of the REPL buffers. If the current context is linked to a single session then that session is the current one. If multiple sessions are linked to a context (say, a project) then the current session is the one containing the most recently viewed REPL. Links to more specific contexts have precedence. For example, if you have two sessions linked to the same project and another to a directory within that project, then the session linked to the directory is the current session. Thus, again, there is no ambiguity. By default [Sesman] allows multiple simultaneous links to projects and directories, but only one link per buffer. See `sesman-single-link-contexts` if you would like to change that. ## Current REPL The current REPL is the most relevant REPL from the current session. REPL relevance is determined by the type of the current buffer. For example if the current buffer is a `clj` buffer then a `clj` REPL is selected. Ambiguous situations could arise when, for instance, there are multiple `clj` REPLs within a session, or the current buffer is a `cljc` buffer and both `clj` and `cljs` REPLs exist in the session. In such cases the current REPL is the most recently viewed REPL of the relevant type. Switch to the current REPL buffer with C-c C-z. You can then use the same key combination to switch back to the Clojure(Script) buffer that you came from. The single prefix C-u C-c C-z, will switch to the current REPL buffer and set the namespace in that buffer based on namespace in the current Clojure(Script) buffer. ## Customizing Session and REPL Names By default session names consist of abbreviated project name, host and port (e.g. `project/dir:localhost:1234`). REPL buffer name consist of the session name and the REPL type specification post-fix (e.g. `*project/dir:localhost:1234(cljs:node)*`). You can customize session names with `cider-session-name-template` and REPL names with `nrepl-repl-buffer-name-template`. See also `cider-format-connection-params` for available formats. [Sesman]: https://github.com/vspinu/sesman