* lisp/hi-lock.el (highlight-symbol-at-mouse): New defalias.
(hi-lock-face-symbol-at-mouse): Rename from hi-lock-symbol-at-mouse.
(hi-lock-context-menu): Use thing-at-mouse and middle-separator.
* lisp/man.el (Man-context-menu): Fix Man-at-mouse and use middle-separator.
* lisp/mouse.el (context-menu-functions): Remove context-menu-online-search.
Add occur-context-menu and dictionary-context-menu (bug#50552).
nil)
;;; Mouse support
-(defun hi-lock-symbol-at-mouse (event)
+(defalias 'highlight-symbol-at-mouse 'hi-lock-face-symbol-at-mouse)
+(defun hi-lock-face-symbol-at-mouse (event)
"Highlight symbol at mouse click EVENT."
(interactive "e")
(save-excursion
;;;###autoload
(defun hi-lock-context-menu (menu click)
"Populate MENU with a menu item to highlight symbol at CLICK."
- (save-excursion
- (mouse-set-point click)
- (when (symbol-at-point)
- (define-key-after menu [highlight-search-separator] menu-bar-separator)
- (define-key-after menu [highlight-search-mouse]
- '(menu-item "Highlight Symbol" highlight-symbol-at-mouse
- :help "Highlight symbol at point"))))
+ (when (thing-at-mouse click 'symbol)
+ (define-key-after menu [highlight-search-separator] menu-bar-separator
+ 'middle-separator)
+ (define-key-after menu [highlight-search-mouse]
+ '(menu-item "Highlight Symbol" highlight-symbol-at-mouse
+ :help "Highlight symbol at point")
+ 'highlight-search-separator))
menu)
(provide 'hi-lock)
(skip-syntax-backward "^ ")
(and (looking-at
"[[:space:]]*\\([[:alnum:]_-]+([[:alnum:]]+)\\)")
- (match-string 1)))
- (define-key-after menu [man-separator] menu-bar-separator)
+ (match-string 1)))
+ (define-key-after menu [man-separator] menu-bar-separator
+ 'middle-separator)
(define-key-after menu [man-at-mouse]
- '(menu-item "Open man page" man-at-mouse
- :help "Open man page around mouse click"))))
+ '(menu-item "Open man page" Man-at-mouse
+ :help "Open man page around mouse click")
+ 'man-separator)))
menu)
\f
(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-item occur-context-menu)
+ (function-item Man-context-menu)
+ (function-item dictionary-context-menu)
(function :tag "Custom function")))
:version "28.1")