From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Re: Sorting of directories in dired Date: Thu, 7 Jul 2005 02:13:33 +0200 Message-ID: References: <42CC7021.5050606@student.lu.se> Reply-To: Juanma Barranquero NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1120696012 2555 80.91.229.2 (7 Jul 2005 00:26:52 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 7 Jul 2005 00:26:52 +0000 (UTC) Cc: Emacs Devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jul 07 02:26:43 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DqKDs-0001pu-Mj for ged-emacs-devel@m.gmane.org; Thu, 07 Jul 2005 02:26:36 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DqKFD-0001Zb-HZ for ged-emacs-devel@m.gmane.org; Wed, 06 Jul 2005 20:27:59 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DqKEO-00013T-5p for emacs-devel@gnu.org; Wed, 06 Jul 2005 20:27:09 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DqKEF-0000y3-D4 for emacs-devel@gnu.org; Wed, 06 Jul 2005 20:27:05 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DqKEB-0000sZ-QS for emacs-devel@gnu.org; Wed, 06 Jul 2005 20:26:55 -0400 Original-Received: from [64.233.182.200] (helo=nproxy.gmail.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DqK7b-0001eG-NZ for emacs-devel@gnu.org; Wed, 06 Jul 2005 20:20:07 -0400 Original-Received: by nproxy.gmail.com with SMTP id d4so12415nfe for ; Wed, 06 Jul 2005 17:13:33 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=adNKBOLN7wyj26+nU6uGltH0jRlA2H6i6Kb4/+DKNYJJ49TUHcOsfLsA1t6u3boqmRV98IJbPjQGX22XzUxGSlg6Na4q1yp9vqJrO7ynqu5e7588yMCy6AZlJc/F/OkOLIRaetVwp+VCp3BZk6ezpwhjlen8yD0FjuvRQlLPF/c= Original-Received: by 10.48.240.16 with SMTP id n16mr7833nfh; Wed, 06 Jul 2005 17:13:33 -0700 (PDT) Original-Received: by 10.48.250.5 with HTTP; Wed, 6 Jul 2005 17:13:33 -0700 (PDT) Original-To: Lennart Borgman In-Reply-To: <42CC7021.5050606@student.lu.se> Content-Disposition: inline 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:40520 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:40520 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)))) --=20 /L/e/k/t/u