Function: sesman-link-with-least-specific

sesman-link-with-least-specific is an autoloaded, interactive and byte-compiled function defined in sesman.el.

Signature

(sesman-link-with-least-specific &optional SESSION)

Documentation

Ask for SESSION and link with the least specific context available.

Normally the least specific context is the project. If not in a project, link with the default-directory. If default-directory is nil, link with current buffer.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/sesman-20240417.1723/sesman.el
;;;###autoload
(defun sesman-link-with-least-specific (&optional session)
  "Ask for SESSION and link with the least specific context available.
Normally the least specific context is the project. If not in a project, link
with the `default-directory'. If `default-directory' is nil, link with current
buffer."
  (interactive "P")
  (sesman--link-session-interactively session nil nil))