From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Martin Newsgroups: gmane.emacs.help Subject: Re: Line folding in Ibuffer Date: Mon, 29 Jun 2009 14:44:04 +0200 Organization: Arcor Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1246290830 28970 80.91.229.12 (29 Jun 2009 15:53:50 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 29 Jun 2009 15:53:50 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Jun 29 17:53:43 2009 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 1MLJAp-0007sk-FT for geh-help-gnu-emacs@m.gmane.org; Mon, 29 Jun 2009 17:53:40 +0200 Original-Received: from localhost ([127.0.0.1]:58519 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MLJAo-0008Ac-UZ for geh-help-gnu-emacs@m.gmane.org; Mon, 29 Jun 2009 11:53:38 -0400 Original-Path: news.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!feeder1-2.proxad.net!proxad.net!feeder2-2.proxad.net!newsfeed.arcor.de!newsspool1.arcor-online.net!news.arcor.de.POSTED!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.95 (windows-nt) Cancel-Lock: sha1:KqyX08RIObW+2kMQ1oenv/3b9NI= Original-Lines: 46 Original-NNTP-Posting-Date: 29 Jun 2009 14:44:03 CEST Original-NNTP-Posting-Host: 66e3be73.newsspool3.arcor-online.net Original-X-Trace: DXC=>FXKXdIZa>bPKPPVf; 4hUjMcF=Q^Z^V3h4Fo<]lROoRa^YC2XCjHcbiobKJoaPW>2l1S9GGF?]VCgGSHEoSN`\8iNMC9KdB]L]hFVL5\2bGf`k Original-X-Complaints-To: usenet-abuse@arcor.de Original-Xref: news.stanford.edu gnu.emacs.help:170420 X-Mailman-Approved-At: Mon, 29 Jun 2009 11:36:07 -0400 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:65638 Archived-At: Lorenzo Isella writes: > Dear All, > A quick one (I suppose): when I invoke ibuffer, long path names are > not visualized entirely. How can I have those long paths folded within > the screen width so that I can read them effortlessly? > I am using screen-lines.el > http://homepage1.nifty.com/bmonkey/emacs/elisp/screen-lines.el > to achieve precisely this e.g. when editing a text file, so I am sure > this has to be doable for ibuffer as well. > Any suggestions are appreciated. > Cheers > > Lorenzo Hi, do you know this ,---- | ` runs the command ibuffer-switch-format, which is an interactive | compiled Lisp function in `ibuffer.el'. | | It is bound to `, . | | (ibuffer-switch-format) | | Switch the current display format. `---- Create your own format by customizing ibuffer-formats. ,---- | ((mark modified read-only " " | (name 45 45 :left :elide) | " " | (size 9 -1 :right) | " " | (mode 16 16 :left :elide) | " " filename-and-process) | (mark " " | (name 16 -1) | " " filename) | (mark modified read-only " " " " filename-and-process)) `---- Cheers Martin parozusa at web dot de