Function: hypb:users-package-manager

hypb:users-package-manager is a byte-compiled function defined in hypb.el.

Signature

(hypb:users-package-manager)

Documentation

Return the package manager in use.

Current supported package managers are straight, elpaca, and package.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260822.1645/hypb.el
(defun hypb:users-package-manager ()
  "Return the package manager in use.
Current supported package managers are `straight', `elpaca', and `package'."
  (cond ((featurep 'straight) 'straight)
        ((featurep 'elpaca) 'elpaca)
        (t 'package)))