emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: master 1b71c995da: Avoid binding mouse-1 in xref when mouse-1 doesn'


From: Stefan Monnier
Subject: Re: master 1b71c995da: Avoid binding mouse-1 in xref when mouse-1 doesn't follow links
Date: Fri, 29 Apr 2022 09:00:38 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux)

> @@ -965,7 +965,9 @@ beginning of the line."
>  
>  (defvar xref--button-map
>    (let ((map (make-sparse-keymap)))
> -    (define-key map [mouse-1] #'xref-goto-xref)
> +    (when mouse-1-click-follows-link
> +      (define-key map [mouse-1] #'xref-goto-xref))
> +    (define-key map [follow-link] 'mouse-face)
>      (define-key map [mouse-2] #'xref-select-and-show-xref)
>      map))

Hmm... this won't adjust if `mouse-1-click-follows-link` is changed
later on.  Why do we need this `mouse-1` binding?


        Stefan




reply via email to

[Prev in Thread] Current Thread [Next in Thread]