Function: sesman-session-info

sesman-session-info is a byte-compiled function defined in sesman.el.

Signature

(sesman-session-info SYSTEM SESSION)

Documentation

Return a plist with :objects key containing user "visible" objects.

Optional :strings value is a list of string representations of objects. Optional
:map key is a local keymap to place on every object in the session browser.
Optional :buffers is a list of buffers which will be used for navigation from the session browser. If :buffers is missing, buffers from :objects are used instead.

Implementations

((system (eql CIDER)) session) in `cider-connection.el'.

Obtain info for a CIDER SESSION.

(system session) in `sesman.el'.

Undocumented

Source Code

;; Defined in ~/.emacs.d/elpa/sesman-20240417.1723/sesman.el
(cl-defgeneric sesman-session-info (_system session)
  "Return a plist with :objects key containing user \"visible\" objects.
Optional :strings value is a list of string representations of objects. Optional
:map key is a local keymap to place on every object in the session browser.
Optional :buffers is a list of buffers which will be used for navigation from
the session browser. If :buffers is missing, buffers from :objects are used
instead."
  (list :objects (cdr session)))