第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

您好,想了解一下,該怎樣在linux系統(tǒng)下如何顯示關(guān)鍵字顏色?

您好,想了解一下,該怎樣在linux系統(tǒng)下如何顯示關(guān)鍵字顏色?

胡說叔叔 2021-11-01 10:06:42
linux系統(tǒng)字符界面下,使用VI編輯器編譯C++程序時(shí),朋友的關(guān)鍵字符的顏色有很多中,我的全是白的字符請(qǐng)問如何設(shè)置呢?
查看完整描述

2 回答

?
慕碼人2483693

TA貢獻(xiàn)1860條經(jīng)驗(yàn) 獲得超9個(gè)贊

linux下設(shè)置ls命令顯示文件、文件夾顏色:

1. LS_COLORS

用 dircolors -p 可以 看到缺省的顏色設(shè)置,包括各種顏色和“粗體”,下劃線,閃爍等定義。

環(huán)境變量LS_COLORS時(shí)用來(lái)設(shè)置GNU ls的--color選項(xiàng)中的顏色的。

# Below are the color init strings for the basic file types. A color init
# string consists of one or more of the following numeric codes:
# Attribute codes:
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
# Text color codes:
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
# Background color codes:
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
NORMAL 00 # global default, although everything should be something.
FILE 00 # normal file
DIR 01;34 # directory

故,要設(shè)置ls的顏色,則在SHELL的配置文件(以下是tcsh的配置文件:.tcshrc,對(duì)于bash略有不同)中添加下面一行:

setenv LS_COLORS 'no=00:fi=00:di=01;33:ln=01;36:pi=40;33:so=01;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=01;35:*.cmd=01;35:*.exe=01;35:*.com=01;35:*.btm=01;35:*.bat=01;35:*.sh=01;35:*.csh=01;35:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.bz=01;31:*.tz=01;31:*.rpm=01;31:*.cpio=01;31:*.jpg=01;35:*.gif=01;35:*.bmp=01;35:*.xbm=01;35:*.xpm=01;35:*.png=01;35:*.tif=01;35:'

即可,可以參照上面的英文自行配置。

另:/etc/DIR_COLORS 文件為系統(tǒng)默認(rèn)顏色參數(shù)配置文件
如果想修改定義自己的顏色參數(shù)配置文件,請(qǐng)執(zhí)行如下操作:
1) cp /etc/DIR_COLORS $HOME/.dir_colors
2) 修改中的顏色定義 $HOME/.dir_colors

2. CLICOLOR

# CLICOLOR是用來(lái)設(shè)置是否進(jìn)行顏色的顯示。CLI是Command Line Interface的縮寫。
setenv CLICOLOR 1

# LSCOLORS是用來(lái)設(shè)置當(dāng)CLICOLOR被啟用后,各種文件類型的顏色
setenv LSCOLORS gxfxaxdxcxegedabagacad

LSCOLORS的值中每?jī)蓚€(gè)字母為一組,分別設(shè)置某個(gè)文件類型的文字顏色和背景顏色。LSCOLORS中一共11組顏色設(shè)置,按照先后順序,分別對(duì)以下的文件類型進(jìn)行設(shè)置:

directory
symbolic link
socket
pipe
executable
block special
character special
executable with setuid bit set
executable with setgid bit set
directory writable to others, with sticky bit
directory writable to others, without sticky bit
LSCOLORS中,字母代表的顏色如下:
a 黑色
b 紅色
c 綠色
d 棕色
e 藍(lán)色
f 洋紅色
g 青色
h 淺灰色
A 黑色粗體
B 紅色粗體
C 綠色粗體
D 棕色粗體
E 藍(lán)色粗體
F 洋紅色粗體
G 青色粗體
H 淺灰色粗體
x 系統(tǒng)默認(rèn)顏色
所以,如果我們想把目錄顯示成紅色,就可以把LSCOLORS設(shè)置為bxfxaxdxcxegedabagacad就可以了
////////////////////////////////////////////
LSCOLORS 的含義:

LSCOLORS The value of this variable describes what color to use
for which attribute when colors are enabled with
CLICOLOR. This string is a concatenation of pairs of the
format fb, where f is the foreground color and b is the
background color.

The color designators are as follows:

a black
b red
c green
d brown
e blue
f magenta
g cyan
h light grey
A bold black, usually shows up as dark grey
B bold red
C bold green
D bold brown, usually shows up as yellow
E bold blue
F bold magenta
G bold cyan
H bold light grey; looks like bright white
x default foreground or background

Note that the above are standard ANSI colors. The actual
display may differ depending on the color capabilities of
the terminal in use.

The order of the attributes are as follows:

1. directory
2. symbolic link
3. socket
4. pipe
5. executable
6. block special
7. character special
8. executable with setuid bit set
9. executable with setgid bit set
10. directory writable to others, with sticky bit
11. directory writable to others, without sticky
bit

The default is “exfxcxdxbxegedabagacad”, i.e. blue fore-
ground and default background for regular directories,
black foreground and red background for setuid executa-
bles, etc.



查看完整回答
反對(duì) 回復(fù) 2021-11-06
?
幕布斯7119047

TA貢獻(xiàn)1794條經(jīng)驗(yàn) 獲得超8個(gè)贊

首先確保安裝了vim-enhanced包,然后,cat ~/.vimrc; 如果有syntax on,則顯示顏色,syntax off,則不顯示顏色

查看完整回答
反對(duì) 回復(fù) 2021-11-06
  • 2 回答
  • 0 關(guān)注
  • 901 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)