diff options
| author | sigmaSd <bedisnbiba@gmail.com> | 2022-12-22 02:02:33 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-22 09:02:33 +0800 |
| commit | 9be124a9208e28b0c09cfe060fd9e9d12044c606 (patch) | |
| tree | 947136cd36adb3dead9669d9640cb7f8ea6d99a3 /lua | |
| parent | docs: update server_configurations.md (diff) | |
| download | nvim-lspconfig-9be124a9208e28b0c09cfe060fd9e9d12044c606.tar nvim-lspconfig-9be124a9208e28b0c09cfe060fd9e9d12044c606.tar.gz nvim-lspconfig-9be124a9208e28b0c09cfe060fd9e9d12044c606.tar.bz2 nvim-lspconfig-9be124a9208e28b0c09cfe060fd9e9d12044c606.tar.lz nvim-lspconfig-9be124a9208e28b0c09cfe060fd9e9d12044c606.tar.xz nvim-lspconfig-9be124a9208e28b0c09cfe060fd9e9d12044c606.tar.zst nvim-lspconfig-9be124a9208e28b0c09cfe060fd9e9d12044c606.zip | |
fix(deno): use virtual text handler for typeDefinition (#2338)
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/server_configurations/denols.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/lspconfig/server_configurations/denols.lua b/lua/lspconfig/server_configurations/denols.lua index 1986a3ec..bf7897f9 100644 --- a/lua/lspconfig/server_configurations/denols.lua +++ b/lua/lspconfig/server_configurations/denols.lua @@ -74,6 +74,7 @@ return { }, handlers = { ['textDocument/definition'] = denols_handler, + ['textDocument/typeDefinition'] = denols_handler, ['textDocument/references'] = denols_handler, ['workspace/executeCommand'] = function(err, result, context) if context.params.command == 'deno.cache' then |
