diff options
author | w0rp <devw0rp@gmail.com> | 2017-05-21 19:22:48 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-05-21 19:22:48 +0100 |
commit | 23ee0d0992c876c605555a3a667cc84c52382ed4 (patch) | |
tree | e04f2a30d1a4dbca20d28d48939fc9766e3f916b /test/test_highlight_placement.vader | |
parent | 57ad32f98656eebdc8c903d670c92cf458b31dce (diff) | |
download | ale-23ee0d0992c876c605555a3a667cc84c52382ed4.zip |
#149 - Set different highlights for info, style error, and style warning problems
Diffstat (limited to 'test/test_highlight_placement.vader')
-rw-r--r-- | test/test_highlight_placement.vader | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/test_highlight_placement.vader b/test/test_highlight_placement.vader index b5878922..454f6209 100644 --- a/test/test_highlight_placement.vader +++ b/test/test_highlight_placement.vader @@ -150,3 +150,26 @@ Execute(Higlight end columns should set an appropriate size): \ {'group': 'ALEWarning', 'id': 16, 'priority': 10, 'pos1': [4, 1, 5]}, \ ], \ getmatches() + +Execute(Higlight end columns should set an appropriate size): + call ale#highlight#SetHighlights(bufnr('%'), [ + \ {'bufnr': bufnr('%'), 'type': 'E', 'lnum': 1, 'col': 1}, + \ {'bufnr': bufnr('%'), 'type': 'E', 'lnum': 2, 'col': 1}, + \ {'bufnr': bufnr('%'), 'type': 'E', 'sub_type': 'style', 'lnum': 3, 'col': 1}, + \ {'bufnr': bufnr('%'), 'type': 'W', 'lnum': 4, 'col': 1}, + \ {'bufnr': bufnr('%'), 'type': 'W', 'lnum': 5, 'col': 1}, + \ {'bufnr': bufnr('%'), 'type': 'W', 'sub_type': 'style', 'lnum': 6, 'col': 1}, + \ {'bufnr': bufnr('%'), 'type': 'I', 'lnum': 7, 'col': 1}, + \]) + + AssertEqual + \ [ + \ {'group': 'ALEError', 'id': 17, 'priority': 10, 'pos1': [1, 1, 1]}, + \ {'group': 'ALEError', 'id': 18, 'priority': 10, 'pos1': [2, 1, 1]}, + \ {'group': 'ALEStyleError', 'id': 19, 'priority': 10, 'pos1': [3, 1, 1]}, + \ {'group': 'ALEWarning', 'id': 20, 'priority': 10, 'pos1': [4, 1, 1]}, + \ {'group': 'ALEWarning', 'id': 21, 'priority': 10, 'pos1': [5, 1, 1]}, + \ {'group': 'ALEStyleWarning', 'id': 22, 'priority': 10, 'pos1': [6, 1, 1]}, + \ {'group': 'ALEInfo', 'id': 23, 'priority': 10, 'pos1': [7, 1, 1]}, + \ ], + \ getmatches() |