From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lennart Borgman Newsgroups: gmane.emacs.devel Subject: Re: Sorting of directories in dired Date: Thu, 07 Jul 2005 08:49:35 +0200 Message-ID: <42CCD07F.5010509@student.lu.se> References: <42CC7021.5050606@student.lu.se> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1120720857 16708 80.91.229.2 (7 Jul 2005 07:20:57 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 7 Jul 2005 07:20:57 +0000 (UTC) Cc: Emacs Devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jul 07 09:20:54 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DqQgE-0004lB-1D for ged-emacs-devel@m.gmane.org; Thu, 07 Jul 2005 09:20:18 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DqQhZ-0002iX-Qr for ged-emacs-devel@m.gmane.org; Thu, 07 Jul 2005 03:21:41 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DqQYI-0006Nh-S4 for emacs-devel@gnu.org; Thu, 07 Jul 2005 03:12:07 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DqQWc-0005q5-9i for emacs-devel@gnu.org; Thu, 07 Jul 2005 03:10:23 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DqQW8-0005Lx-Jt for emacs-devel@gnu.org; Thu, 07 Jul 2005 03:09:53 -0400 Original-Received: from [81.228.8.164] (helo=pne-smtpout2-sn2.hy.skanova.net) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DqQIw-0005he-JZ for emacs-devel@gnu.org; Thu, 07 Jul 2005 02:56:14 -0400 Original-Received: from [192.168.123.121] (83.249.205.6) by pne-smtpout2-sn2.hy.skanova.net (7.2.060.1) id 42B94E29002AA75A; Thu, 7 Jul 2005 08:49:35 +0200 User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en Original-To: Juanma Barranquero In-Reply-To: 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: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:40536 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:40536 Juanma Barranquero wrote: >On 7/7/05, Lennart Borgman wrote: > > >>In dired files are sorted case sensitive. This does not make sense on an >>OS with case insensitive file system. Is there any way to get the >>listing in dired sorted case insensitive? >> >> > >If you're on Windows, dired is using the Lisp emulation of `ls', that >is, ls-lisp.el. You can configure it to be case insensitive. My .emacs >has this: > >(when (eq system-type 'windows-nt) > (setq ls-lisp-emulation 'MS-Windows > ls-lisp-dirs-first t > ls-lisp-ignore-case t > ls-lisp-verbosity (nconc (and (w32-using-nt) '(links)) '(uid)))) > > Thanks! Should not this be the default on w32?