* lisp/mouse.el (context-menu-functions): Add new menu functions
to the defcustom type list (bug#52973).
(mouse-set-point event)
(highlight-symbol-at-point)))
+;;;###autoload
(defun hi-lock-context-menu (menu click)
"Populate MENU with a menu item to highlight symbol at CLICK."
(save-excursion
(mouse-set-point e)
(man (Man-default-man-entry))))
+;;;###autoload
(defun Man-context-menu (menu click)
"Populate MENU with commands that open a man page at point."
(save-excursion
(function-item context-menu-buffers)
(function-item context-menu-vc)
(function-item context-menu-ffap)
+ (function-item Man-context-menu)
+ (function-item hi-lock-context-menu)
+ (function-item context-menu-online-search)
(function :tag "Custom function")))
:version "28.1")