fix seperator drawing when tabs are shown. fixes #653.

This commit is contained in:
Bailey Ling
2014-11-22 11:52:54 -05:00
parent 15666d71e3
commit 6b4f03efbc
4 changed files with 45 additions and 21 deletions

View File

@@ -75,6 +75,14 @@ describe 'active builder'
Expect stl !~ '%#__restore__#'
Expect stl =~ '%#Normal#'
end
it 'should blend colors from the left through the split to the right'
call s:builder.add_section('Normal', 'hello')
call s:builder.split()
call s:builder.add_section('Search', 'world')
let stl = s:builder.build()
Expect stl =~ 'Normal_to_Search'
end
end
describe 'inactive builder'