Function: sesman-relevant-context-p

sesman-relevant-context-p is a byte-compiled function defined in sesman.el.

Signature

(sesman-relevant-context-p CXT-TYPE CXT)

Documentation

Non-nil if context CXT is relevant to current context of type CXT-TYPE.

Implementations

((cxt-type (eql project)) proj) in `sesman.el'.

Non-nil if PROJ is the parent or equal to the `default-directory'.

((cxt-type (eql directory)) dir) in `sesman.el'.

Non-nil if DIR is the parent or equals the `default-directory'.

((cxt-type (eql buffer)) buf) in `sesman.el'.

Non-nil if BUF is `current-buffer'.

Source Code

;; Defined in ~/.emacs.d/elpa/sesman-20240417.1723/sesman.el
(cl-defgeneric sesman-relevant-context-p (_cxt-type cxt)
  "Non-nil if context CXT is relevant to current context of type CXT-TYPE.")