tests: don't ignore highlights in syntax_conceal_spec

This commit is contained in:
Björn Linse
2016-08-09 14:22:54 +02:00
parent cc657951a9
commit a63f770bcb

View File

@@ -10,8 +10,10 @@ describe('Screen', function()
clear() clear()
screen = Screen.new(nil,10) screen = Screen.new(nil,10)
screen:attach() screen:attach()
screen:set_default_attr_ignore( {{bold=true, foreground=255}} ) screen:set_default_attr_ids( {
screen:set_default_attr_ids( {{foreground = Screen.colors.LightGrey, background = Screen.colors.DarkGray}} ) [0] = {bold=true, foreground=Screen.colors.Blue},
[1] = {foreground = Screen.colors.LightGrey, background = Screen.colors.DarkGray}
} )
end) end)
after_each(function() after_each(function()
@@ -46,8 +48,8 @@ describe('Screen', function()
{1:∧} | {1:∧} |
{1:∧} | {1:∧} |
^ | ^ |
~ | {0:~ }|
~ | {0:~ }|
:syn match dAmpersand '[&][&]' conceal cchar=∧ | :syn match dAmpersand '[&][&]' conceal cchar=∧ |
]]) ]])
end) end)
@@ -62,8 +64,8 @@ describe('Screen', function()
{1:∧} | {1:∧} |
^&& | ^&& |
| |
~ | {0:~ }|
~ | {0:~ }|
:syn match dAmpersand '[&][&]' conceal cchar=∧ | :syn match dAmpersand '[&][&]' conceal cchar=∧ |
]]) ]])
end) end)
@@ -78,8 +80,8 @@ describe('Screen', function()
{1:∧} | {1:∧} |
{1:∧} | {1:∧} |
| |
~ | {0:~ }|
~ | {0:~ }|
:syn match dAmpersand '[&][&]' conceal cchar=∧ | :syn match dAmpersand '[&][&]' conceal cchar=∧ |
]]) ]])
end) end)
@@ -94,8 +96,8 @@ describe('Screen', function()
{1:∧} | {1:∧} |
{1:∧} | {1:∧} |
| |
~ | {0:~ }|
~ | {0:~ }|
:syn match dAmpersand '[&][&]' conceal cchar=∧ | :syn match dAmpersand '[&][&]' conceal cchar=∧ |
]]) ]])
end) end)
@@ -110,8 +112,8 @@ describe('Screen', function()
{1:∧} | {1:∧} |
{1:∧} | {1:∧} |
^ | ^ |
~ | {0:~ }|
~ | {0:~ }|
:syn match dAmpersand '[&][&]' conceal cchar=∧ | :syn match dAmpersand '[&][&]' conceal cchar=∧ |
]]) ]])
end) end)
@@ -125,12 +127,12 @@ describe('Screen', function()
{1:λ} | {1:λ} |
{1:λ} | {1:λ} |
^ | ^ |
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
:syn keyword kLambda lambda conceal cchar=λ | :syn keyword kLambda lambda conceal cchar=λ |
]]) ]])
end) -- Keyword end) -- Keyword
@@ -149,12 +151,12 @@ describe('Screen', function()
{1:R} | {1:R} |
{1:R} | {1:R} |
^ | ^ |
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
| |
]]) ]])
end) end)
@@ -167,12 +169,12 @@ describe('Screen', function()
{1: } a region of text {1:-} | {1: } a region of text {1:-} |
{1: } a region of text {1:-} | {1: } a region of text {1:-} |
^ | ^ |
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
| |
]]) ]])
end) end)
@@ -186,10 +188,10 @@ describe('Screen', function()
{1: } A region with {1: } a nested {1: } nested region.{1:-} | {1: } A region with {1: } a nested {1: } nested region.{1:-} |
{1:-} {1:-} | {1:-} {1:-} |
^ | ^ |
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
| |
]]) ]])
end) end)
@@ -208,12 +210,12 @@ describe('Screen', function()
{1:-} | {1:-} |
{1:-} | {1:-} |
^ | ^ |
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
:syn region rText start='<r>' end='</r>' cchar=- | :syn region rText start='<r>' end='</r>' cchar=- |
]]) ]])
end) end)
@@ -229,10 +231,10 @@ describe('Screen', function()
<i> italian text </i> | <i> italian text </i> |
<i> italian text </i> | <i> italian text </i> |
^ | ^ |
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
:syn region iText start='<i>' end='</i>' cchar=* | :syn region iText start='<i>' end='</i>' cchar=* |
]]) ]])
execute("syntax conceal on") execute("syntax conceal on")
@@ -243,10 +245,10 @@ describe('Screen', function()
{1:*} | {1:*} |
{1:*} | {1:*} |
^ | ^ |
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
:syn region iText start='<i>' end='</i>' cchar=* | :syn region iText start='<i>' end='</i>' cchar=* |
]]) ]])
end) end)
@@ -271,10 +273,10 @@ describe('Screen', function()
+ With cchar | + With cchar |
| |
^ | ^ |
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
:let &conceallevel=0 | :let &conceallevel=0 |
]]) ]])
end) end)
@@ -287,10 +289,10 @@ describe('Screen', function()
{1:C} | {1:C} |
| |
^ | ^ |
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
:let &conceallevel=1 | :let &conceallevel=1 |
]]) ]])
end) end)
@@ -303,10 +305,10 @@ describe('Screen', function()
{1:C} | {1:C} |
| |
^ | ^ |
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
:let &conceallevel=2 | :let &conceallevel=2 |
]]) ]])
end) end)
@@ -319,10 +321,10 @@ describe('Screen', function()
| |
| |
^ | ^ |
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
~ | {0:~ }|
:let &conceallevel=3 | :let &conceallevel=3 |
]]) ]])
end) end)