我想让vim不仅加粗我的当前行,还要强调它。
我当前的.vimrc看起来像这样:
hi cursorline term=bold cterm=bold guibg=Grey40
set cursorline
是否可以为我的cterm添加值?
像
这样的东西cterm=bold&underline
OR
cterm=bold cterm+=underline
由于
答案 0 :(得分:2)
您应该使用逗号:
cterm=bold,underline
,如:help attr-list
:
attr-list is a comma separated list (without spaces) of the
following items (in any order):
bold
underline
undercurl not always available
reverse
inverse same as reverse
italic
standout
NONE no attributes used (used to reset it)