" Dim inactive windows using 'colorcolumn' setting
" This tends to slow down redrawing, but is very useful.
" Based on https://groups.google.com/d/msg/vim_use/IJU-Vk-QLJE/xz4hjPjCRBUJ
" XXX: this will only work with lines containing text (i.e. not '~')
function! s:DimInactiveWindows()
for i in range(1, tabpagewinnr(tabpagenr(), '$'))
let l:range = ""
if i != winnr()
if &wrap
" HACK: when wrapping lines is enabled, we use the maximum number
" of columns getting highlighted. This might get calculated by
" looking for the longest visible line and using a multiple of
" winwidth().
let l:width=256 " max
else
let l:width=winwidth(i)
endif
let l:range = join(range(1, l:width), ',')
endif
call setwinvar(i, '&colorcolumn', l:range)
endfor
endfunction
augroup DimInactiveWindows
au!
au WinEnter * call s:DimInactiveWindows()
au WinEnter * set cursorline
au WinLeave * set nocursorline
augroup END
5条答案
按热度按时间6ljaweal1#
我提出了以下解决方案(使用“colorcolumn”并取消设置“cursorline”):
在我的(当前)点文件中查看:https://github.com/blueyed/dotfiles/blob/master/vimrc#L351
更新我已经创建了一个插件:https://github.com/blueyed/vim-diminactive
rkkpypqq2#
https://github.com/TaDaa/vimade淡化不活动的缓冲区,保留语法突出显示,还可以淡化符号。我是作者,但我认为这可能是有用的一些作为一个更新的替代。支持nvim和vim8,256色终端,termguicolors,和gui。
xpszyzbs3#
在neovim(v0.2.1)中,以下配置将使非活动窗格变暗:
i7uaboj44#
如你所描述的那样改变背景颜色需要为不同的Vim窗口使用不同的配色方案。据我所知这是不可能的,因为这是一个全局设置(请参阅几天前的this answer)。
我发现状态线通常就足够了,可以直观地帮助确定哪个窗口是活动的。活动窗口(
hi StatusLine
)和非活动窗口(hi StatusLineNC
)的高亮显示组是不同的。你可以选择一个对比鲜明的配色方案,也可以编辑你最喜欢的配色方案。jjhzyzn05#
我创建了一个配色方案walh来处理这个问题。
它没有做很多花哨的事情,它只是使用终端颜色来做高亮和调光。这是很好的,因为如果你使用
tmux
,调光将匹配。看起来类似于
nvim|nvim(focus)|tmux
: