From mboxrd@z Thu Jan 1 00:00:00 1970 From: Clemence Magnien Subject: Re: Re: Feature request: Highlight the agenda line with the cursor on it Date: Sun, 17 Aug 2008 10:31:15 +0200 Message-ID: <20080817083114.GA21707@ithaque> References: <48A2438D.20703@yahoo.com> <8763q5abf0.fsf@hypercube.vpn.ertius.org> Reply-To: Clemence Magnien Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KUddr-0006fm-D0 for emacs-orgmode@gnu.org; Sun, 17 Aug 2008 04:29:39 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KUddq-0006eq-21 for emacs-orgmode@gnu.org; Sun, 17 Aug 2008 04:29:39 -0400 Received: from [199.232.76.173] (port=38412 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KUddp-0006ej-S2 for emacs-orgmode@gnu.org; Sun, 17 Aug 2008 04:29:37 -0400 Received: from smtp1-g19.free.fr ([212.27.42.27]:51651) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KUddp-0006Pk-Ke for emacs-orgmode@gnu.org; Sun, 17 Aug 2008 04:29:37 -0400 Received: from smtp1-g19.free.fr (localhost.localdomain [127.0.0.1]) by smtp1-g19.free.fr (Postfix) with ESMTP id AE4411AB2F4 for ; Sun, 17 Aug 2008 10:29:15 +0200 (CEST) Received: from localhost (mna75-2-82-67-196-92.fbx.proxad.net [82.67.196.92]) by smtp1-g19.free.fr (Postfix) with ESMTP id 8CB8B1AB2E7 for ; Sun, 17 Aug 2008 10:29:15 +0200 (CEST) Content-Disposition: inline In-Reply-To: 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@gnu.org On Wed, Aug 13, 2008 at 11:57:13AM -0400, Dale Smith wrote: > "Rob Weir" writes: >=20 > > On 13 Aug 2008, Robert Miesen wrote: > >> I've noticed that as I go through tasks listed in my agenda, it's > >> very easy to select and operate on the wrong task because it's too > >> easy to loose track of what task I am operating on. If the entire ta= sk > >> line entry were highlighted, it would be much easier to determine > >> which task was being operated on. > > > > Not built-in, but: > > > > ,---- > > | (add-hook 'org-agenda-mode-hook '(lambda () (hl-line-mode 1))) > > `---- > > > > works quite well. This is great! :) I had to tweak it a little bit in order to make it work under xemacs in t= ty mode, however. This is my setup, in case it helps others: ;hl-line seems to be only for emacs (require 'highline) (add-hook 'org-agenda-mode-hook '(lambda () (highline-mode 1))) ;highline-mode does not work straightaway in tty mode. ;I use a black background (custom-set-faces '(highline-face ((((type tty) (class color)) (:background "white" :fore= ground "black"))))) Cl=E9mence