我是靠谱客的博主 美满发箍,最近开发中收集的这篇文章主要介绍linux设置终端颜色256,如何设置我的Linux X终端以便Emacs可以访问256种颜色?,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

根据

this,除了将TERM设置为xterm-256color之外,还需要ncurses-term库.

好的,this还有其他一些尝试:

The xterm in Ubuntu Edgy does not advertise 256 color support by

default. 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. Emacs

22 expects it to contain a terminal-init-screen defun. Emacs 21

expects 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 code.

(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

最后

以上就是美满发箍为你收集整理的linux设置终端颜色256,如何设置我的Linux X终端以便Emacs可以访问256种颜色?的全部内容,希望文章能够帮你解决linux设置终端颜色256,如何设置我的Linux X终端以便Emacs可以访问256种颜色?所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(63)

评论列表共有 0 条评论

立即
投稿
返回
顶部