From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stephen Berman Newsgroups: gmane.emacs.help Subject: Re: Dired: configure displayed file/folder details Date: Wed, 22 Aug 2007 01:52:46 +0200 Message-ID: <87d4xgcunl.fsf@escher.local.home> References: <5im7sdF3qc3rfU1@mid.individual.net> <87fy2c1uz2.fsf@debby.local.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1187740442 14363 80.91.229.12 (21 Aug 2007 23:54:02 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 21 Aug 2007 23:54:02 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Aug 22 01:53:59 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1INdXq-0005xs-2X for geh-help-gnu-emacs@m.gmane.org; Wed, 22 Aug 2007 01:53:58 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1INdXp-0001Cy-NT for geh-help-gnu-emacs@m.gmane.org; Tue, 21 Aug 2007 19:53:57 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1INdX1-0000wM-Hv for help-gnu-emacs@gnu.org; Tue, 21 Aug 2007 19:53:07 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1INdX0-0000vm-3e for help-gnu-emacs@gnu.org; Tue, 21 Aug 2007 19:53:07 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1INdWz-0000vh-OG for help-gnu-emacs@gnu.org; Tue, 21 Aug 2007 19:53:05 -0400 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1INdWz-0006Hr-Lo for help-gnu-emacs@gnu.org; Tue, 21 Aug 2007 19:53:05 -0400 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1INdWq-0005t4-Nk for help-gnu-emacs@gnu.org; Wed, 22 Aug 2007 01:52:56 +0200 Original-Received: from i577bc142.versanet.de ([87.123.193.66]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 22 Aug 2007 01:52:56 +0200 Original-Received: from Stephen.Berman by i577bc142.versanet.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 22 Aug 2007 01:52:56 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 14 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: i577bc142.versanet.de User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (gnu/linux) X-Detected-Kernel: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:46732 Archived-At: On Tue, 21 Aug 2007 22:41:21 +0200 Dieter Wilhelm wrote: > Does anybody know how to sort directories before or after regular > files with ls options or does some trick in dired exist for this kind > of sorting? Besides the mentioned ls option --group-directories-first (for coreutils >= 6.0) there's ls-lisp.el: (require 'ls-lisp) (setq ls-lisp-use-insert-directory-program nil ls-lisp-dirs-first t) Steve Berman