From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Sebastian Tennant Newsgroups: gmane.emacs.help Subject: Re: emacs shell Date: Mon, 22 May 2006 14:28:33 +0100 Message-ID: <87sln2b33y.fsf@smolny.plus.com> References: <446F57D4.2000503@mail.telepac.pt> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1148304603 29245 80.91.229.2 (22 May 2006 13:30:03 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 22 May 2006 13:30:03 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon May 22 15:30:01 2006 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FiATf-0004HR-88 for geh-help-gnu-emacs@m.gmane.org; Mon, 22 May 2006 15:29:43 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FiATe-0001cR-M9 for geh-help-gnu-emacs@m.gmane.org; Mon, 22 May 2006 09:29:42 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FiATS-0001cI-Po for help-gnu-emacs@gnu.org; Mon, 22 May 2006 09:29:30 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FiATQ-0001bo-5n for help-gnu-emacs@gnu.org; Mon, 22 May 2006 09:29:29 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FiATQ-0001bl-2d for help-gnu-emacs@gnu.org; Mon, 22 May 2006 09:29:28 -0400 Original-Received: from [80.91.229.2] (helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1FiAXP-0006SP-Rk for help-gnu-emacs@gnu.org; Mon, 22 May 2006 09:33:36 -0400 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1FiASy-00044w-VG for help-gnu-emacs@gnu.org; Mon, 22 May 2006 15:29:01 +0200 Original-Received: from bl6-145-155.dsl.telepac.pt ([82.155.145.155]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 22 May 2006 15:29:00 +0200 Original-Received: from sebyte by bl6-145-155.dsl.telepac.pt with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 22 May 2006 15:29:00 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-To: help-gnu-emacs@gnu.org Original-Lines: 25 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: bl6-145-155.dsl.telepac.pt User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/21.4 (gnu/linux) Cancel-Lock: sha1:SffMIsZQjFH9L1lXn4nrxBoLFSY= 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:35204 Archived-At: Quoth Pedro Sa da Costa : > in emacs shell i do an ls, and what i got is: > > ls > ^[[a.java ^[[b.java ^[[c.java ^[[d.java ^[[e.java ^[[f.java > > and what i want is something similar to a bash ls. Ie, well formated: > > a.java b.java > c.java d.java > e.java f.java It's a colour issue. The '^[['s are control characters. Try: $ ls --color=none and add something like this to your ~/.bashrc to avoid color information being applied in your emacs shells: # ls behaviour [ "$EMACS" == "t" ] && alias ls="ls --color=none" sdt