Function: treemacs-scope->current-scope-name

treemacs-scope->current-scope-name is a byte-compiled function defined in treemacs-scope.el.

Signature

(treemacs-scope->current-scope-name ARG &rest ARGS)

Implementations

(treemacs-scope->current-scope-name (_ (subclass treemacs-frame-scope)) FRAME) in `treemacs-scope.el'.

Prints the given FRAME.

(treemacs-scope->current-scope-name (_ (subclass treemacs-scope)) SCOPE) in `treemacs-scope.el'.

Get the name of the given SCOPE.

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-scope.el
(cl-defmethod treemacs-scope->current-scope-name ((_ (subclass treemacs-scope)) scope)
  "Get the name of the given SCOPE."
  (ignore scope)
  nil)