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 for SESSION.
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
(sesman-session-info (SYSTEM (eql CIDER)) SESSION) in `cider-session.el'.
Obtain info for a CIDER SESSION.
(sesman-session-info SYSTEM SESSION) in `sesman.el'.
Undocumented
Source Code
;; Defined in ~/.emacs.d/elpa/sesman-20260616.1239/sesman.el
(cl-defgeneric sesman-session-info (_system session)
"Return a plist with :objects key containing user-visible objects for SESSION.
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)))