up vote 20 down vote favorite
5
share [g+] share [fb]

I use Ubuntu8.10 and emacs-snapshot. Running shell-mode on emacs and input "ls" shows escape codes:

screenshot

How can I get the output I expect?

link|improve this question

Well, those funny characters are escape sequences ('ESC' '[' '0' 'm') which can serve a s a clue to others, but I won't answer since I don't know a specific fix. – paxdiablo Apr 1 '09 at 8:46
feedback

protected by Will Aug 15 '10 at 21:15

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

6 Answers

up vote 29 down vote accepted

You can use AnsiTerm which does support colors or you can enable AnsiColor for the normal shell:

(autoload 'ansi-color-for-comint-mode-on "ansi-color" nil t)
(add-hook 'shell-mode-hook 'ansi-color-for-comint-mode-on)
link|improve this answer
feedback

Furthermore, you may choose another shell: M-x term or M-x eshell. The former provides an interface that is much closer to a real terminal emulator than shell-mode (once you start it, you can get out of the mode with C-c C-j and get in again with C-c C-k). The latter is a shell implementation written in Elisp (you can use the common shell commands as well as evaluating Lisp code).

link|improve this answer
I know eshell, but I don't like it, not that powerful. – linjunhalida Apr 1 '09 at 9:49
You are saying a general purpose programing langauge is less powerful than shell? I think you just don't know how to use it. – jrockway Apr 2 '09 at 0:36
I do not mean that. It is not about any languages versus shell, but the shell-mode and its alternatives. If you want a shell inside Emacs, I found myself term-mode much convenient, which allows the buffer to behave like a real terminal or you can work on it as any other common Emacs buffer. – Török Gábor Apr 6 '09 at 10:48
feedback

The problem is that "l" is trying to colorise the output and emacs isn't having any of it. Try the following:

$ unalias l
$ alias l ls --color=never
link|improve this answer
how to only change it in emacs? – linjunhalida Apr 1 '09 at 9:22
TERM=dumb ls, probably. – jrockway Apr 2 '09 at 0:35
feedback

Expanding on vatine's answer, you can add that inside your .cshrc (.tcshrc/.bashrc) wrapped with a check for the environment variable INSIDE_EMACS.

For example (from my .tcshrc):

if ( $?INSIDE_EMACS ) then
   alias l 'ls --color=never'
endif
link|improve this answer
feedback

M-x ansi-color-for-comint-mode-on

link|improve this answer
feedback

I wrapped my alias ls ='ls --color=auto' in ~/.bashrc:

case "$TERM" in
xterm*|rxvt*)
    if [ -x /usr/bin/dircolors ]; then
        alias ls='ls --color=auto'
        ...
    fi
    ;;
*)
    ;;
esac

This disables using color=auto in emacs.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.