ถ้าคุณต้องการสีเหล่านี้จะเพิ่มเฉพาะเมื่อดูหน้าคนไม่ได้สำหรับทุกอย่างที่คุณดูในless
คุณควรตั้งค่าตัวแปรเหล่านี้ในฟังก์ชั่นเสื้อคลุมสำหรับแทนการวางไว้ในคุณman
config.fish
กระบวนการทั้งหมดคือการสร้างไฟล์ใหม่ที่~/.config/fish/functions/man.fish
และภายในกำหนดฟังก์ชั่นman
ที่กำหนดตัวแปรสภาพแวดล้อมที่จำเป็นแล้วเรียกเดิมman
ใช้ผ่านในการขัดแย้งโดยใช้command
$argv
นี่คือฟังก์ชั่น wrapper รุ่นของฉัน:
~/.config/fish/functions/man.fish
function man --description "wrap the 'man' manual page opener to use color in formatting"
# based on this group of settings and explanation for them:
# http://boredzo.org/blog/archives/2016-08-15/colorized-man-pages-understood-and-customized
# converted to Fish shell syntax thanks to this page:
# http://askubuntu.com/questions/522599/how-to-get-color-man-pages-under-fish-shell/650192
# start of bold:
set -x LESS_TERMCAP_md (set_color --bold red)
# end of all formatting:
set -x LESS_TERMCAP_me (set_color normal)
# start of standout (inverted colors):
#set -x LESS_TERMCAP_so (set_color --reverse)
# end of standout (inverted colors):
#set -x LESS_TERMCAP_se (set_color normal)
# (no change – I like the default)
# start of underline:
#set -x LESS_TERMCAP_us (set_color --underline)
# end of underline:
#set -x LESS_TERMCAP_ue (set_color normal)
# (no change – I like the default)
command man $argv
end