我设置了 Vim 来突出显示尾随空格:
set listchars=eol:↵,nbsp:◦,tab:―→,trail:⮿,extends:⮚,precedes:⮘
set list " Show problematic characters.
" Also highlight all tabs and trailing whitespace characters.
highlight ExtraWhitespace ctermbg=red guibg=red
match ExtraWhitespace /\s\+$/
这工作正常,并在尾随空白字符上设置红色突出显示的背景。
有没有办法设置文本的前景色而不是背景色?我似乎无法使用 ctermfg 和 guifg 触发它。