Function: ebrowse-show-displayed-class-in-tree

ebrowse-show-displayed-class-in-tree is an interactive and byte-compiled function defined in ebrowse.el.gz.

Signature

(ebrowse-show-displayed-class-in-tree ARG)

Documentation

Show the currently displayed class in the tree window.

With prefix ARG, switch to the tree buffer else pop to it.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/ebrowse.el.gz
(defun ebrowse-show-displayed-class-in-tree (arg)
  "Show the currently displayed class in the tree window.
With prefix ARG, switch to the tree buffer else pop to it."
  (interactive "P")
  (let ((class-name (ebrowse-class-name-displayed-in-member-buffer)))
    (when (ebrowse-pop-from-member-to-tree-buffer arg)
      (ebrowse-read-class-name-and-go class-name))))