1

my emacs shell mode screen shot ... emacs shell mode screen

Normal shell looks like this... shell mode normal

I have .emacs file empty..

emacs version 24.5.1

I already tried this Why does shell mode display some rubbish code?

[i copy the code provided in solution of above question in my .emacs file but its not working for me...]

Rorschach
  • 31,301
  • 5
  • 78
  • 129
Abhinesh
  • 123
  • 7

1 Answers1

0

It looks like it is the unicode not the escape codes that aren't displaying. You can change the process-coding-system. From your shell buffer, enter C-x RET p and select utf-8-unix for process read and write.

If that results in the proper display, you may want to add something like the following to your init file

(prefer-coding-system 'utf-8)
(set-default-coding-systems 'utf-8)
(set-terminal-coding-system 'utf-8)
(set-keyboard-coding-system 'utf-8)

See this article for further details.

Rorschach
  • 31,301
  • 5
  • 78
  • 129