From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Gilbert Subject: Re: highlight confusion in agenda Date: Tue, 20 Jul 2010 06:42:35 -0700 Message-ID: References: <20FFF776-3D5A-4FF1-9E63-6381F5CBAA36@gmail.com> Mime-Version: 1.0 (Apple Message framework v1081) Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable Return-path: Received: from [140.186.70.92] (port=57323 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ObD5i-0001f8-Io for emacs-orgmode@gnu.org; Tue, 20 Jul 2010 09:42:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1ObD5h-0001f5-AV for emacs-orgmode@gnu.org; Tue, 20 Jul 2010 09:42:38 -0400 Received: from [74.94.69.218] (port=58523 helo=peach.gilbert.org) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1ObD5g-0001eq-Vp for emacs-orgmode@gnu.org; Tue, 20 Jul 2010 09:42:37 -0400 Received: from [192.168.1.136] (unknown [10.1.10.18]) by peach.gilbert.org (Postfix) with ESMTP id DE879EE7553B for ; Tue, 20 Jul 2010 06:42:35 -0700 (PDT) In-Reply-To: <20FFF776-3D5A-4FF1-9E63-6381F5CBAA36@gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode Mailinglist >> I have a frequent navigation issue in the agenda and I'm curious if = anyone else deals with this or has a solution. Like many users I have = the currently selected line in the agenda set to be highlighted (an = absolute lifesaver). But although I am not very mouse-oriented, as an = Aquamacs user I find that the line where the mouse happens to be = hovering (not having selected anything) is mostly highlighted in exactly = the same was as the selected line. This is a cause of frequent error on = my part. I only notice this in the agenda, not in other files. >>=20 >> Is there any way to turn off the latter effect? >=20 > Untested: >=20 > (add-hook 'org-finalize-agenda-hook > (lambda () (remove-text-properties > (point-min) (point-max) '(mouse-face t)))) >=20 > This might also turn off the mouse bindings in the agenda, at least = some of them. > But maybe this is actually also what you'd like to have.... Tested. Fantastic. Doesn't disable mouse-bindings completely, but = totally solves my problem. Thank you so much. =97 M