Find
無法在 Less 中將粗體字型更改為黃色字型
**問題:**將影響單詞“表達式”的粗體更改為Less中的黃色: alt text http://files.getdropbox.com/u/175564/man-bolding-highlight.png
我的命令影響較少
export LESS_TERMCAP_mb=$'\E[01;31m' # begin blinking export LESS_TERMCAP_md=$'\E[01;31m' # begin bold export LESS_TERMCAP_me=$'\E[0m' # end mode export LESS_TERMCAP_se=$'\E[0m' # end standout-mode export LESS_TERMCAP_so=$'\E[01;44;33m' # begin standout-mode export LESS_TERMCAP_ue=$'\E[0m' # end underline export LESS_TERMCAP_us=$'\E[01;32m' # begin underline
如何將粗體更改為黃色?
我在 debian/lenny 上的聯機幫助頁有不同的內容,但我認為您正在搜尋 LESS_TERMCAP_us。試試這個:
export LESS_TERMCAP_us=$'\E[01;33m' # begin underline is now yellow
ThornstenS 回答後的結果
替代文字 http://files.getdropbox.com/u/175564/man-link.png
我的 Less 程式碼
export LESS_TERMCAP_mb=$'\E[01;31m' # begin blinking export LESS_TERMCAP_md=$'\E[01;38;5;74m' # bold in blue export LESS_TERMCAP_me=$'\E[0m' # end mode export LESS_TERMCAP_se=$'\E[0m' # end standout-mode export LESS_TERMCAP_so=$'\E[38;5;246m' # begin standout-mode - info box export LESS_TERMCAP_ue=$'\E[0m' # end underline export LESS_TERMCAP_us=$'\E[04;33;146m' # begin underline is now yellow # | | | # | |----------------- yellow # |-------------------- underline
現在閱讀文件要容易得多:)
謝謝ThorntenS!