diff options
author | w0rp <w0rp@users.noreply.github.com> | 2018-08-28 10:11:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-28 10:11:44 +0100 |
commit | b6112aedc30fde8ffc3afb691eeb6db4a89a3f47 (patch) | |
tree | e8c7d321c5e9f304ff778ba05826b8537baa86b8 /test/test_go_to_definition.vader | |
parent | 3c85c7ef65242cf80279cf9dcf843523f6d7875b (diff) | |
parent | aef11cc0d2bca89e98aacee0c42ac9b551deea02 (diff) | |
download | ale-b6112aedc30fde8ffc3afb691eeb6db4a89a3f47.zip |
Merge pull request #1861 from dimbleby/goto-definition-column
Fix out-by-one error in column on goto-definition
Diffstat (limited to 'test/test_go_to_definition.vader')
-rw-r--r-- | test/test_go_to_definition.vader | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_go_to_definition.vader b/test/test_go_to_definition.vader index c64db514..66c24fb6 100644 --- a/test/test_go_to_definition.vader +++ b/test/test_go_to_definition.vader @@ -213,7 +213,7 @@ Execute(Other files should be jumped to for LSP definition responses): \ 'edit +3 ' . fnameescape(ale#path#Simplify(g:dir . '/completion_dummy_file')), \ ], \ g:expr_list - AssertEqual [3, 7], getpos('.')[1:2] + AssertEqual [3, 8], getpos('.')[1:2] AssertEqual {}, ale#definition#GetMap() Execute(Locations inside the same file should be jumped to without using :edit): @@ -235,7 +235,7 @@ Execute(Locations inside the same file should be jumped to without using :edit): \ [ \ ], \ g:expr_list - AssertEqual [3, 7], getpos('.')[1:2] + AssertEqual [3, 8], getpos('.')[1:2] AssertEqual {}, ale#definition#GetMap() Execute(Other files should be jumped to in tabs for LSP definition responses): @@ -258,7 +258,7 @@ Execute(Other files should be jumped to in tabs for LSP definition responses): \ 'tabedit +3 ' . fnameescape(ale#path#Simplify(g:dir . '/completion_dummy_file')), \ ], \ g:expr_list - AssertEqual [3, 7], getpos('.')[1:2] + AssertEqual [3, 8], getpos('.')[1:2] AssertEqual {}, ale#definition#GetMap() Execute(Definition responses with lists should be handled): @@ -289,7 +289,7 @@ Execute(Definition responses with lists should be handled): \ 'edit +3 ' . fnameescape(ale#path#Simplify(g:dir . '/completion_dummy_file')), \ ], \ g:expr_list - AssertEqual [3, 7], getpos('.')[1:2] + AssertEqual [3, 8], getpos('.')[1:2] AssertEqual {}, ale#definition#GetMap() Execute(Definition responses with null response should be handled): |