Function: smart-company-help

smart-company-help is an interactive and byte-compiled function defined in hui-mouse.el.

Signature

(smart-company-help EVENT)

Documentation

Assist Key binding for company-mode completions popup to show item doc.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-mouse.el
(defun smart-company-help (event)
  "Assist Key binding for `company-mode' completions popup to show item doc."
  (interactive "e")
  (when (mouse-event-p last-command-event)
    (company-select-mouse event))
  (if (featurep 'company-quickhelp)
      (company-quickhelp-manual-begin)
    (company-show-doc-buffer)))