Function: activities--project-name
activities--project-name is a byte-compiled function defined in
activities.el.
Signature
(activities--project-name)
Documentation
Return the name of the current project, if any.
Source Code
;; Defined in ~/.emacs.d/elpa/activities-0.7.2/activities.el
(defun activities--project-name ()
"Return the name of the current project, if any."
(require 'project)
(when-let ((project (project-current)))
(project-name project)))