gpt4 book ai didi

vim - fzf.vim 中的颜色

转载 作者:行者123 更新时间:2023-12-04 17:24:31 25 4
gpt4 key购买 nike

如何为 fzf.vimp 弹出窗口保持与终端相同的颜色?最新的更新使用 g:fzf_colors 将其更改为当前的 Vim 主题。我尝试将其设置为“”,也​​尝试将颜色规范更改为“忽略”,但这没有用。我在终端中有半透明背景,这就是过去在 Vim 的 FZF 窗口中显示的内容,尽管 Vim 背景是灰色的(Zenburn)。
Vim 8.2。

最佳答案

:h g:fzf_colors表示

    " Customize fzf colors to match your color scheme                                          
" - fzf#wrap translates this to a set of `--color` options
let g:fzf_colors =
\ { 'fg': ['fg', 'Normal'],
\ 'bg': ['bg', 'Normal'],
\ 'hl': ['fg', 'Comment'],
\ 'fg+': ['fg', 'CursorLine', 'CursorColumn', 'Normal'],
\ 'bg+': ['bg', 'CursorLine', 'CursorColumn'],
\ 'hl+': ['fg', 'Statement'],
\ 'info': ['fg', 'PreProc'],
\ 'border': ['fg', 'Ignore'],
\ 'prompt': ['fg', 'Conditional'],
\ 'pointer': ['fg', 'Exception'],
\ 'marker': ['fg', 'Keyword'],
\ 'spinner': ['fg', 'Label'],
\ 'header': ['fg', 'Comment'] }
我把这个放在我的 ~/.vim/plugin/fzf-options (但您也可以将它直接放在您的 .vim/vimrc 文件中)。
它使它与主题颜色相匹配。

关于vim - fzf.vim 中的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64175618/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com