From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: poppyer Newsgroups: gmane.emacs.help Subject: Re: Dired: configure displayed file/folder details Date: Fri, 17 Aug 2007 20:47:37 +0100 Organization: University Of Oxford, England Message-ID: References: <5im7sdF3qc3rfU1@mid.individual.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1187383281 13082 80.91.229.12 (17 Aug 2007 20:41:21 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 17 Aug 2007 20:41:21 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Aug 17 22:41:19 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 1IM8dA-0006Ve-Nv for geh-help-gnu-emacs@m.gmane.org; Fri, 17 Aug 2007 22:41:16 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IM8dA-0001H1-AA for geh-help-gnu-emacs@m.gmane.org; Fri, 17 Aug 2007 16:41:16 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!feeder1-2.proxad.net!proxad.net!feeder1-1.proxad.net!club-internet.fr!feedme-small.clubint.net!news.stack.nl!feeds.news.ox.ac.uk!news.ox.ac.uk!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 23 Original-NNTP-Posting-Host: clpc78.comlab.ox.ac.uk Original-X-Trace: frank-exchange-of-views.oucs.ox.ac.uk 1187380057 1221 163.1.27.212 (17 Aug 2007 19:47:37 GMT) Original-X-Complaints-To: newsmaster@ox.ac.uk Original-NNTP-Posting-Date: Fri, 17 Aug 2007 19:47:37 +0000 (UTC) User-Agent: Emacs Gnus Cancel-Lock: sha1:6hFyk8Z5w3+YTBzzWa4BV9fFYUc= Original-Xref: shelby.stanford.edu gnu.emacs.help:151089 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:46664 Archived-At: Will writes: > Hi, > > how can I tell Emacs *what* and *how* it shall display file/folder > details in Dired? > > For example, I'd like to display the complete date and time > information for each file, not depending on the date/time of the > file. At the moment, Dired drops the time if the file is > older. Further, I'd like to switch off the display of user rights or > file owners/groups. > Basically, dired use "ls" command as its input. You can try to customize "dired-listing-switches" variable to suit your needs for example: (setq dired-listing-switches "-l") ;; hide .hiding file Cheers, poppyer --