Function: eieio-speedbar-handle-click

eieio-speedbar-handle-click is a byte-compiled function defined in eieio-speedbar.el.gz.

Signature

(eieio-speedbar-handle-click OBJECT)

Documentation

Handle a click action on OBJECT in speedbar.

Any object can be represented as a tag in SPEEDBAR without special attributes. These default objects will be pulled up in a custom object edit buffer doing an in-place edit.

If your object represents some other item, override this method and take the appropriate action.

Implementations

(eieio-speedbar-handle-click OBJECT) in `eieio-speedbar.el'.

Handle a click action on OBJECT in speedbar. Any object can be represented as a tag in SPEEDBAR without special attributes. These default objects will be pulled up in a custom object edit buffer doing an in-place edit.

If your object represents some other item, override this method and take the appropriate action.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/eieio-speedbar.el.gz
(cl-defmethod eieio-speedbar-handle-click (object)
  "Handle a click action on OBJECT in speedbar.
Any object can be represented as a tag in SPEEDBAR without special
attributes.  These default objects will be pulled up in a custom
object edit buffer doing an in-place edit.

If your object represents some other item, override this method
and take the appropriate action."
  (require 'eieio-custom)
  (dframe-with-attached-buffer
   (eieio-customize-object object))
  (dframe-maybee-jump-to-attached-frame))