From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Thien-Thi Nguyen Newsgroups: gmane.emacs.devel Subject: Re: compilation-highlight-duration Date: 05 May 2004 18:47:32 -0400 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: References: <20040504.075437.207586641.Takaaki.Ota@am.sony.com> <20040505.135939.147933766.Takaaki.Ota@am.sony.com> NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1083799083 3544 80.91.224.253 (5 May 2004 23:18:03 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 5 May 2004 23:18:03 +0000 (UTC) Cc: rms@gnu.org, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Thu May 06 01:17:57 2004 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BLVeH-0002pt-00 for ; Thu, 06 May 2004 01:17:57 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1BLVeG-0006bh-00 for ; Thu, 06 May 2004 01:17:56 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.30) id 1BLVce-0001Re-5E for emacs-devel@quimby.gnus.org; Wed, 05 May 2004 19:16:16 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.30) id 1BLVPg-0005is-Ei for emacs-devel@gnu.org; Wed, 05 May 2004 19:02:52 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.30) id 1BLVKv-0004MB-S2 for emacs-devel@gnu.org; Wed, 05 May 2004 18:58:29 -0400 Original-Received: from [207.245.84.69] (helo=colo.agora-net.com) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.30) id 1BLVAr-0001r2-HX; Wed, 05 May 2004 18:47:33 -0400 Original-Received: from ttn by colo.agora-net.com with local (Exim 3.34 #1) id 1BLVAq-0004bL-00; Wed, 05 May 2004 18:47:32 -0400 Original-To: Tak Ota In-Reply-To: Tak Ota's message of "Wed, 05 May 2004 13:59:39 -0700 (PDT)" Original-Lines: 22 X-Mailer: Gnus v5.7/Emacs 20.7 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.4 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:22825 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:22825 Tak Ota writes: momentary line flashing can be annoying to some people including myself. perhaps for a duration value D: - (not D) => omit highlighting - (zerop D) => keep highlighted until user input - (< 0 D) => highlight for D seconds then unhighlight - (> 0 D) => like (zerop D) but wait -D seconds before starting i personally would set D to be -2 (or thereabouts) under this scheme. this way, stepping quickly through the hits would result in no visual distraction whatsoever, while pausing would clearly show the hit w/o danger of accidentally missing it (due to some other non-emacs-related distraction ;-), as possible w/ (< 0 D). we could get real fancy and define all keystrokes like they do on (musical synthesizer) keyboards: attack, decay, hold, release; but that wouldn't work on console, oh well... thi