[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: activate region with S-mouse-1
From: |
Stefan Monnier |
Subject: |
Re: activate region with S-mouse-1 |
Date: |
Fri, 28 Mar 2014 16:19:19 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux) |
> This issue exists since rev 107888 and is documented there: "Don't
> activate the region on shift if the binding is already shifted." That's
> fine for <left> as <S-left> translates to <left>, but <S-mouse-1> does
> not translate to <mouse-1>.
Yes, S-mouse-1 does translate to mouse-1, tho only if S-mouse-1 is
not bound. So instead of binding S-mouse-1 to mouse-set-point, you want
to unbind S-mouse-1: (global-set-key [S-mouse-1] nil)
Stefan