Variable: sesman-single-link-context-types

sesman-single-link-context-types is a customizable variable defined in sesman.el.

Value

(buffer)

Documentation

List of context types to which at most one session can be linked.

This variable was added, or its default value changed, in sesman version 0.1.0.

Source Code

;; Defined in ~/.emacs.d/elpa/sesman-20240417.1723/sesman.el
;; (defcustom sesman-disambiguate-by-relevance t
;;   "If t choose most relevant session in ambiguous situations, otherwise ask.
;; Ambiguity arises when multiple sessions are associated with current context.
;; By default only projects could be associated with multiple sessions.  See
;; `sesman-single-link-contexts' in order to change that.  Relevance is decided
;; by system's implementation, see `sesman-more-relevant-p'."
;;   :group 'sesman
;;   :type 'boolean)

(defcustom sesman-single-link-context-types '(buffer)
  "List of context types to which at most one session can be linked."
  :group 'sesman
  :type '(repeat symbol)
  :package-version '(sesman . "0.1.0"))