diff options
author | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2020-02-22 21:20:38 +0900 |
---|---|---|
committer | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2020-03-01 09:10:02 +0900 |
commit | 16262472cda88d0a4dc5c6729cfef36264569324 (patch) | |
tree | a2262b0ccd3a957c9f27114365dff0f835bbc71c /test | |
parent | f157fdef7eccba6601c6d3b1475847466b60c25b (diff) | |
download | rneovim-16262472cda88d0a4dc5c6729cfef36264569324.tar.gz rneovim-16262472cda88d0a4dc5c6729cfef36264569324.tar.bz2 rneovim-16262472cda88d0a4dc5c6729cfef36264569324.zip |
lsp: add 'textDocument/documentSymbol’ callback
Spec: https://microsoft.github.io/language-server-protocol/specifications/specification-current/#textDocument_documentSymbol
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/plugin/lsp_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/plugin/lsp_spec.lua b/test/functional/plugin/lsp_spec.lua index ba1eb2113e..369b826adf 100644 --- a/test/functional/plugin/lsp_spec.lua +++ b/test/functional/plugin/lsp_spec.lua @@ -241,7 +241,7 @@ describe('LSP', function() it('should succeed with manual shutdown', function() local expected_callbacks = { - {NIL, "shutdown", {}, 1}; + {NIL, "shutdown", {}, 1, NIL}; {NIL, "test", {}, 1}; } test_rpc_server { |