From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Masatake YAMATO Newsgroups: gmane.emacs.devel Subject: Re: tree widget Date: Mon, 12 Apr 2004 12:59:25 +0900 (JST) Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <20040412.125925.246503710.jet@gyve.org> References: <20040408.210748.25163220.jet@gyve.org> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1081742954 27373 80.91.224.253 (12 Apr 2004 04:09:14 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 12 Apr 2004 04:09:14 +0000 (UTC) Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Mon Apr 12 06:09:07 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 1BCskt-0003SP-00 for ; Mon, 12 Apr 2004 06:09:07 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1BCskt-0008QJ-00 for ; Mon, 12 Apr 2004 06:09:07 +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 1BCro3-0000UD-7B for emacs-devel@quimby.gnus.org; Sun, 11 Apr 2004 23:08:19 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.30) id 1BCrjh-00053e-QC for emacs-devel@gnu.org; Sun, 11 Apr 2004 23:03:49 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.30) id 1BCrgU-0002Io-HC for emacs-devel@gnu.org; Sun, 11 Apr 2004 23:00:31 -0400 Original-Received: from [210.130.136.40] (helo=r-maa.spacetown.ne.jp) by monty-python.gnu.org with esmtp (Exim 4.30) id 1BCrgB-0001iW-L6 for emacs-devel@gnu.org; Sun, 11 Apr 2004 23:00:11 -0400 Original-Received: from localhost ([219.120.63.249]) by r-maa.spacetown.ne.jp (8.11.6) with ESMTP id i3C3xcK14799 for ; Mon, 12 Apr 2004 12:59:38 +0900 (JST) Original-To: emacs-devel@gnu.org In-Reply-To: X-Mailer: Mew version 4.0.62 on Emacs 21.3.50 / Mule 5.0 (SAKAKI) 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:21499 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:21499 > How do you think including tree-widget developed by David PONCE > in emacs official distribution? > > Could you explain to me what that does? As the name explains, the code provides widget representing a tree hierarchy like: [-] ./ | [+] CVS/ | [+] autom4te.cache/ | [+] checks/ | [-] src/ | | [+] .deps/ | | [+] .libs/ | | [+] CVS/ | | .cvsignore* | | Makefile* | | Makefile.am* | | Makefile.in* | | TAGS* | | glibextra.c* | | glibextra.h* | | glibextra.lo* | | glibextra.o* | | libinda.la* | | linda.c* | | linda.h* | | linda.lo* | | linda.o* | | semantic.cache* | | tuplespace.c* | | tuplespace.h* | | tuplespace.lo* | ` tuplespace.o* | .cvsignore* | AUTHORS* | ChangeLog* | HACKING* ` semantic.cache* You can click [+] and [-] to show and hide the sub tree like outline mode. Masatake YAMATO