Function: smart-imenu-display-item-where

smart-imenu-display-item-where is a byte-compiled function defined in hui-mouse.el.

Signature

(smart-imenu-display-item-where ITEM-NAME ITEM-POS)

Documentation

Display an ITEM-NAME defined at ITEM-POS within the current buffer.

Uses the imenu library and the value of hpath:display-where to display.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-mouse.el
;;; ************************************************************************
;;; smart-imenu functions
;;; ************************************************************************

(defun smart-imenu-display-item-where (item-name item-pos)
  "Display an ITEM-NAME defined at ITEM-POS within the current buffer.
Uses the imenu library and the value of `hpath:display-where' to display."
  (hpath:display-buffer (current-buffer))
  (funcall imenu-default-goto-function item-name item-pos))