fixup! fix(highlight): remove syncolor.vim

This commit is contained in:
Gregory Anders 2021-07-28 09:11:07 -06:00
parent 9190addf1f
commit cab90f2ef1
3 changed files with 18 additions and 16 deletions

View File

@ -14,6 +14,8 @@ local function new_screen(opt)
[3] = {bold = true, reverse = true}, [3] = {bold = true, reverse = true},
[4] = {foreground = Screen.colors.Grey100, background = Screen.colors.Red}, [4] = {foreground = Screen.colors.Grey100, background = Screen.colors.Red},
[5] = {bold = true, foreground = Screen.colors.SeaGreen4}, [5] = {bold = true, foreground = Screen.colors.SeaGreen4},
[6] = {foreground = Screen.colors.Magenta},
[7] = {bold = true, foreground = Screen.colors.Brown},
}) })
return screen return screen
end end
@ -267,7 +269,7 @@ local function test_cmdline(linegrid)
special = {'"', true}, special = {'"', true},
}, { }, {
firstc = "=", firstc = "=",
content = {{"1"}, {"+"}, {"2"}}, content = {{"1", 6}, {"+", 7}, {"2", 6}},
pos = 3, pos = 3,
}} }}

View File

@ -789,7 +789,7 @@ describe("'listchars' highlight", function()
[0] = {bold=true, foreground=Screen.colors.Blue}, [0] = {bold=true, foreground=Screen.colors.Blue},
[1] = {background=Screen.colors.Grey90}, [1] = {background=Screen.colors.Grey90},
[2] = {foreground=Screen.colors.Red}, [2] = {foreground=Screen.colors.Red},
[3] = {foreground=Screen.colors.Green1}, [3] = {foreground=Screen.colors.X11Green, background=Screen.colors.Red1},
}) })
feed_command('highlight clear ModeMsg') feed_command('highlight clear ModeMsg')
feed_command('highlight Whitespace guifg=#FF0000') feed_command('highlight Whitespace guifg=#FF0000')

View File

@ -176,8 +176,8 @@ describe('Signs', function()
command('sign place 5 line=3 name=pietWarn buffer=1') command('sign place 5 line=3 name=pietWarn buffer=1')
command('sign place 3 line=3 name=pietError buffer=1') command('sign place 3 line=3 name=pietError buffer=1')
screen:expect([[ screen:expect([[
{1:>>}XX{6: 1 }a | {1:>>}{8:XX}{6: 1 }a |
XX{1:>>}{6: 2 }b | {8:XX}{1:>>}{6: 2 }b |
{1:>>}WW{6: 3 }c | {1:>>}WW{6: 3 }c |
{2: }{6: 4 }^ | {2: }{6: 4 }^ |
{0:~ }| {0:~ }|
@ -194,7 +194,7 @@ describe('Signs', function()
-- With the default setting, we get the sign with the top id. -- With the default setting, we get the sign with the top id.
command('set signcolumn=yes:1') command('set signcolumn=yes:1')
screen:expect([[ screen:expect([[
XX{6: 1 }a | {8:XX}{6: 1 }a |
{1:>>}{6: 2 }b | {1:>>}{6: 2 }b |
WW{6: 3 }c | WW{6: 3 }c |
{2: }{6: 4 }^ | {2: }{6: 4 }^ |
@ -212,9 +212,9 @@ describe('Signs', function()
-- "auto:3" accommodates all the signs we defined so far. -- "auto:3" accommodates all the signs we defined so far.
command('set signcolumn=auto:3') command('set signcolumn=auto:3')
screen:expect([[ screen:expect([[
{1:>>}XX{2: }{6: 1 }a | {1:>>}{8:XX}{2: }{6: 1 }a |
XX{1:>>}{2: }{6: 2 }b | {8:XX}{1:>>}{2: }{6: 2 }b |
XX{1:>>}WW{6: 3 }c | {8:XX}{1:>>}WW{6: 3 }c |
{2: }{6: 4 }^ | {2: }{6: 4 }^ |
{0:~ }| {0:~ }|
{0:~ }| {0:~ }|
@ -230,9 +230,9 @@ describe('Signs', function()
-- Check "yes:9". -- Check "yes:9".
command('set signcolumn=yes:9') command('set signcolumn=yes:9')
screen:expect([[ screen:expect([[
{1:>>}XX{2: }{6: 1 }a | {1:>>}{8:XX}{2: }{6: 1 }a |
XX{1:>>}{2: }{6: 2 }b | {8:XX}{1:>>}{2: }{6: 2 }b |
XX{1:>>}WW{2: }{6: 3 }c | {8:XX}{1:>>}WW{2: }{6: 3 }c |
{2: }{6: 4 }^ | {2: }{6: 4 }^ |
{0:~ }| {0:~ }|
{0:~ }| {0:~ }|
@ -249,9 +249,9 @@ describe('Signs', function()
-- a single line (same result as "auto:3"). -- a single line (same result as "auto:3").
command('set signcolumn=auto:4') command('set signcolumn=auto:4')
screen:expect{grid=[[ screen:expect{grid=[[
{1:>>}XX{2: }{6: 1 }a | {1:>>}{8:XX}{2: }{6: 1 }a |
XX{1:>>}{2: }{6: 2 }b | {8:XX}{1:>>}{2: }{6: 2 }b |
XX{1:>>}WW{6: 3 }c | {8:XX}{1:>>}WW{6: 3 }c |
{2: }{6: 4 }^ | {2: }{6: 4 }^ |
{0:~ }| {0:~ }|
{0:~ }| {0:~ }|
@ -267,8 +267,8 @@ describe('Signs', function()
-- line deletion deletes signs. -- line deletion deletes signs.
command('2d') command('2d')
screen:expect([[ screen:expect([[
{1:>>}XX{2: }{6: 1 }a | {1:>>}{8:XX}{2: }{6: 1 }a |
XX{1:>>}WW{6: 2 }^c | {8:XX}{1:>>}WW{6: 2 }^c |
{2: }{6: 3 } | {2: }{6: 3 } |
{0:~ }| {0:~ }|
{0:~ }| {0:~ }|