如何更改 vim 缓冲区颜色?
How to change vim buffer color?
我正在定制我的 vim 配色方案(它基于 ci_dark 主题)但我无法弄清楚是什么为我的缓冲区名称设置了蓝色。蓝色表示在其中一个拆分中可见但未激活的缓冲区。 AFAIK,只有以下三个与此相关的颜色组,但我一定遗漏了一些东西。我想改变蓝色。你能帮帮我吗?
谢谢!
call s:HL('TabLine', s:colors.none, s:colors.none)
call s:HL('TabLineFill', s:colors.none, s:colors.none)
call s:HL('TabLineSel', s:colors.black, s:colors.red)
我通过阅读大量文档找到了这个问题的答案。分享给大家,以防以后遇到同样的问题。
我发现选项卡的颜色是由我使用的插件设置的。该文档指示它正在使用哪个突出显示组。这就是我得到奇怪组合的原因。在我的例子中,PmenuSel 与 TabLineSel 不同,因此它导致了颜色差异。
https://github.com/ap/vim-buftabline/blob/master/doc/buftabline.txt
The highlight groups and their default links are as follows:
Custom group Default link Meaning
*BufTabLineCurrent* |TabLineSel| Buffer shown in current window
*BufTabLineActive* |PmenuSel| Buffer shown in other window
*BufTabLineHidden* |TabLine| Buffer not currently visible
*BufTabLineFill* |TabLineFill| Empty area
我使用的配色方案是ci_dark
。我已经根据自己的喜好配置了它,所以我只是添加了以下行来解决这个问题。
" BufTabLine
" ----------------------------------------------------
call s:HL('BufTabLineActive', s:colors.foreground, s:colors.background)
我正在定制我的 vim 配色方案(它基于 ci_dark 主题)但我无法弄清楚是什么为我的缓冲区名称设置了蓝色。蓝色表示在其中一个拆分中可见但未激活的缓冲区。 AFAIK,只有以下三个与此相关的颜色组,但我一定遗漏了一些东西。我想改变蓝色。你能帮帮我吗?
谢谢!
call s:HL('TabLine', s:colors.none, s:colors.none)
call s:HL('TabLineFill', s:colors.none, s:colors.none)
call s:HL('TabLineSel', s:colors.black, s:colors.red)
我通过阅读大量文档找到了这个问题的答案。分享给大家,以防以后遇到同样的问题。
我发现选项卡的颜色是由我使用的插件设置的。该文档指示它正在使用哪个突出显示组。这就是我得到奇怪组合的原因。在我的例子中,PmenuSel 与 TabLineSel 不同,因此它导致了颜色差异。
https://github.com/ap/vim-buftabline/blob/master/doc/buftabline.txt
The highlight groups and their default links are as follows:
Custom group Default link Meaning
*BufTabLineCurrent* |TabLineSel| Buffer shown in current window
*BufTabLineActive* |PmenuSel| Buffer shown in other window
*BufTabLineHidden* |TabLine| Buffer not currently visible
*BufTabLineFill* |TabLineFill| Empty area
我使用的配色方案是ci_dark
。我已经根据自己的喜好配置了它,所以我只是添加了以下行来解决这个问题。
" BufTabLine
" ----------------------------------------------------
call s:HL('BufTabLineActive', s:colors.foreground, s:colors.background)