Function: smart-profiler-report-assist

smart-profiler-report-assist is an interactive and byte-compiled function defined in hui-mouse.el.

Signature

(smart-profiler-report-assist)

Documentation

Use a single assist key or mouse assist key to toggle profiler call trees.

Invoked via an assist key press when in profiler-report-mode. It assumes that its caller has already checked that the assist key was pressed in an appropriate buffer and has moved the cursor there.

If assist key is pressed:
 (1) on an item line, toggles exposure of the item's call tree.
 (2) on or after the last line in the buffer, quits from the profiler report.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-mouse.el
(defun smart-profiler-report-assist ()
  "Use a single assist key or mouse assist key to toggle profiler call trees.

Invoked via an assist key press when in `profiler-report-mode'.  It assumes
that its caller has already checked that the assist key was pressed in an
appropriate buffer and has moved the cursor there.

If assist key is pressed:
 (1) on an item line, toggles exposure of the item's call tree.
 (2) on or after the last line in the buffer, quits from the profiler report."
  (interactive)
   ;; If on last line, quit from mode
   (if (last-line-p)
       (quit-window)
     ;; Otherwise, toggle exposing the entry's call tree
     (profiler-report-toggle-entry t)))