From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Kai Grossjohann Newsgroups: gmane.emacs.devel Subject: Re: Propertizing the minor-mode-alist Date: Mon, 20 Sep 2004 12:56:56 +0200 Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Message-ID: <86d60hmcnb.fsf@ketchup.de.uu.net> References: <1095335866.7357.83.camel@pineapple.bkk.thaiopensource.com> <1095388341.7357.93.camel@pineapple.bkk.thaiopensource.com> <1095475837.7357.125.camel@pineapple.bkk.thaiopensource.com> <1095575707.7357.220.camel@pineapple.bkk.thaiopensource.com> <1095647396.7357.281.camel@pineapple.bkk.thaiopensource.com> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1095677899 5797 80.91.229.6 (20 Sep 2004 10:58:19 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 20 Sep 2004 10:58:19 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Sep 20 12:58:10 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1C9Ls1-0007cO-00 for ; Mon, 20 Sep 2004 12:58:10 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1C9Lxt-0006Xb-Rt for ged-emacs-devel@m.gmane.org; Mon, 20 Sep 2004 07:04:13 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1C9LxO-0006Es-Tv for emacs-devel@gnu.org; Mon, 20 Sep 2004 07:03:43 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1C9LxM-0006D7-TE for emacs-devel@gnu.org; Mon, 20 Sep 2004 07:03:42 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1C9LxM-0006Cz-Qn for emacs-devel@gnu.org; Mon, 20 Sep 2004 07:03:40 -0400 Original-Received: from [80.91.229.2] (helo=main.gmane.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1C9LrM-00029O-VM for emacs-devel@gnu.org; Mon, 20 Sep 2004 06:57:29 -0400 Original-Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1C9LrL-0000mQ-00 for ; Mon, 20 Sep 2004 12:57:27 +0200 Original-Received: from 139.4.37.213 ([139.4.37.213]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 20 Sep 2004 12:57:27 +0200 Original-Received: from kai by 139.4.37.213 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 20 Sep 2004 12:57:27 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-To: emacs-devel@gnu.org Original-Lines: 19 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: 139.4.37.213 User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.3.50 (gnu/linux) Cancel-Lock: sha1:Yi1r9lv2NKK5fImARbuX2nUneno= X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:27314 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:27314 James Clark writes: > I misspoke earlier: there's a keystroke for goto to next error, but not > for goto first error. Obviously I could add one, but when you have a > complex major mode, it's hard to find mnemonic key bindings for all the > commands, and it's hard for the user to remember all of them (at least I > find it hard to remember them). I find the click interface convenient > because it's more efficient than the menu bar, but easier to remember > that a keystroke interface would be. nxml-mode could integrate with the next-error framework that has recently been added to CVS. That would make M-x first-error RET and M-x next-error RET work. It would also be cool if it could populate a *compilation*-like buffer with the error messages -- it is convenient to navigate between errors in compilation buffers. Kai