根据这个,你需要
ncurses-term在除了设置库
TERM来
xterm-256color。
好吧,这还有其他一些尝试:
The xterm in Ubuntu Edgy does not advertise 256 color support bydefault. To fix this you need to install a 256 color terminfo entry,and tell xterm to use it: apt-get install ncurses-term echo XTerm.termName: xterm-256color >>~/.Xdefaults xrdb -merge ~/.Xdefaults
和:
So you need a file term/screen-256color.el in your load-path. Emacs22 expects it to contain a terminal-init-screen defun. Emacs 21expects it to contain a bunch of top-level forms. Here's what I use: ;;; This is for GNU Emacs 22 (defun terminal-init-screen () "Terminal initialization function for screen." ;; Use the xterm color initialization pre. (load "term/xterm") (xterm-register-default-colors) (tty-set-up-initial-frame-faces)) ;;; This is for GNU Emacs 21 (if (= 21 emacs-major-version) (load "term/xterm-256color"))For Emacs 21, you also need to install the xterm-256color.el file from http://www.splode.com/~friedman/software/emacs-lisp/src/term/xterm-256color.el



