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

How can I get the output I expect?
|
I use Ubuntu8.10 and emacs-snapshot. Running shell-mode on emacs and input "ls" shows escape codes:
How can I get the output I expect?
| ||||
feedback
|
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.
|
You can use AnsiTerm which does support colors or you can enable AnsiColor for the normal shell:
| |||
|
feedback
|
|
Furthermore, you may choose another shell: | |||||||
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 | |||||
|
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):
| |||
|
feedback
|
|
I wrapped my
This disables using | |||
|
feedback
|