diff options
author | w0rp <devw0rp@gmail.com> | 2018-06-15 09:53:13 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2018-06-15 10:01:28 +0100 |
commit | bda89506bac3bf25d56a0ad8aef81a4cae848bb8 (patch) | |
tree | f95777c074a13ff01d06df5a8c0f0f60dd10fadf /test/test_go_to_definition.vader | |
parent | f1b72218c36cadd544f4363d726e8ee131a593a5 (diff) | |
download | ale-bda89506bac3bf25d56a0ad8aef81a4cae848bb8.zip |
Lazy-load LSP linters, and check b:changedtick before notifying about changes
Diffstat (limited to 'test/test_go_to_definition.vader')
-rw-r--r-- | test/test_go_to_definition.vader | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/test/test_go_to_definition.vader b/test/test_go_to_definition.vader index 6af97099..3a1d7458 100644 --- a/test/test_go_to_definition.vader +++ b/test/test_go_to_definition.vader @@ -11,12 +11,18 @@ Before: runtime autoload/ale/lsp.vim runtime autoload/ale/util.vim - function! ale#linter#StartLSP(buffer, linter, callback) abort + function! ale#lsp_linter#StartLSP(buffer, linter, callback) abort let g:Callback = a:callback + let l:conn = ale#lsp#NewConnection({}) + let l:conn.id = 347 + let l:conn.open_documents = {a:buffer : -1} + return { + \ 'buffer': a:buffer, \ 'connection_id': 347, \ 'project_root': '/foo/bar', + \ 'language_id': 'python', \} endfunction @@ -31,6 +37,7 @@ Before: endfunction After: + call ale#lsp#RemoveConnectionWithID(347) call ale#definition#SetMap({}) call ale#test#RestoreDirectory() call ale#linter#Reset() |