From c81b7849a0f677164c01cf84ecfb25c1f47acf21 Mon Sep 17 00:00:00 2001 From: Mathias Fußenegger Date: Tue, 23 Apr 2024 19:05:01 +0200 Subject: refactor(lsp): merge subtypes and supertypes into typehierarchy (#28467) Both methods had pretty much the same documentation and shared the implementation. --- test/functional/plugin/lsp_spec.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/functional/plugin') diff --git a/test/functional/plugin/lsp_spec.lua b/test/functional/plugin/lsp_spec.lua index 8d3e141944..0432d3fc94 100644 --- a/test/functional/plugin/lsp_spec.lua +++ b/test/functional/plugin/lsp_spec.lua @@ -3463,7 +3463,7 @@ describe('LSP', function() end) end) - describe('vim.lsp.buf.subtypes', function() + describe('vim.lsp.buf.typehierarchy subtypes', function() it('does nothing for an empty response', function() local qflist_count = exec_lua([=[ require'vim.lsp.handlers'['typeHierarchy/subtypes'](nil, nil, {}) @@ -3681,7 +3681,7 @@ describe('LSP', function() end) end) - describe('vim.lsp.buf.supertypes', function() + describe('vim.lsp.buf.typehierarchy supertypes', function() it('does nothing for an empty response', function() local qflist_count = exec_lua([=[ require'vim.lsp.handlers'['typeHierarchy/supertypes'](nil, nil, {}) -- cgit