1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-13 02:05:40 +08:00

Remove default highlight value for vim

This commit is contained in:
Shidong Wang 2020-07-10 22:29:11 +08:00
parent 8331c0a6a1
commit 845998f24d

View File

@ -100,7 +100,7 @@ function! s:self.win_config(winid, options) abort
let row = get(a:options, 'row', 1)
let width = get(a:options, 'width', 1)
let height = get(a:options, 'height', 1)
let highlight = get(a:options, 'highlight', 'Normal')
let highlight = get(a:options, 'highlight', '')
let relative = get(a:options, 'relative', 'editor')
if relative ==# 'win'
elseif relative ==# 'cursor'