Variable: sesman-sessions-hashmap

sesman-sessions-hashmap is a variable defined in sesman.el.

Value

#s(hash-table size 65 test equal rehash-size 1.5 rehash-threshold 0.8125 data
	      ())

Documentation

Hash-table of all sesman sessions.

Key is a cons (system-name . session-name).

Source Code

;; Defined in ~/.emacs.d/elpa/sesman-20240417.1723/sesman.el
;; FIXME:
;; (defcustom sesman-abbreviate-paths 2
;;   "Abbreviate paths to that many parents.
;; When set to nil, don't abbreviate directories."
;;   :group 'sesman
;;   :type '(choice number
;;                  (const :tag "Don't abbreviate" nil)))

(defvar sesman-sessions-hashmap (make-hash-table :test #'equal)
  "Hash-table of all sesman sessions.
Key is a cons (system-name . session-name).")