[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: master 89365d7: Fix mouse buttons in dired--make-directory-clickable
From: |
Stefan Kangas |
Subject: |
Re: master 89365d7: Fix mouse buttons in dired--make-directory-clickable |
Date: |
Sun, 24 Oct 2021 12:38:48 -0700 |
larsi@gnus.org (Lars Ingebrigtsen) writes:
> branch: master
> commit 89365d748f15f2fd789c3818480a16849ac05a94
> Author: Lars Ingebrigtsen <larsi@gnus.org>
> Commit: Lars Ingebrigtsen <larsi@gnus.org>
>
> Fix mouse buttons in dired--make-directory-clickable
>
> * lisp/dired.el (dired--make-directory-clickable): Adjust mouse
> clicks to conform to our standards.
> ---
> lisp/dired.el | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/lisp/dired.el b/lisp/dired.el
> index ced1811..40dfc39 100644
> --- a/lisp/dired.el
> +++ b/lisp/dired.el
> @@ -1672,7 +1672,8 @@ see `dired-use-ls-dired' for more details.")
> (dired-goto-subdir current-dir)
> (dired current-dir)))))
> (define-keymap
> - [down-mouse-1] click
> + [mouse-2] click
> + [follow-link] 'mouse-face
AFAICT, our standards are to follow links on mouse-1. This happens in
eww, help-mode, etc.
- Re: master 89365d7: Fix mouse buttons in dired--make-directory-clickable,
Stefan Kangas <=