mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 00:20:05 +08:00
fix(notify): use nvim_win_set_option
instead
This commit is contained in:
parent
71dd46e450
commit
7c627cf732
@ -242,8 +242,8 @@ function! s:self.redraw_windows() abort
|
|||||||
\ 'focusable' : v:false,
|
\ 'focusable' : v:false,
|
||||||
\ })
|
\ })
|
||||||
if self.winblend > 0 && exists('&winblend')
|
if self.winblend > 0 && exists('&winblend')
|
||||||
call nvim_win_set_var(self.winid, 'winblend', self.winblend)
|
call nvim_win_set_option(self.winid, 'winblend', self.winblend)
|
||||||
call nvim_win_set_var(self.border.winid, 'winblend', self.winblend)
|
call nvim_win_set_option(self.border.winid, 'winblend', self.winblend)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
call self.__buffer.buf_set_lines(self.border.bufnr, 0 , -1, 0,
|
call self.__buffer.buf_set_lines(self.border.bufnr, 0 , -1, 0,
|
||||||
|
Loading…
Reference in New Issue
Block a user