From c43d9580c3ff5999a1eabca849f807ab33787ea7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Mizio?= Date: Tue, 16 Jan 2024 08:18:14 +0100 Subject: [PATCH] fix: incorrect module path for `typescriptTools/configurePlugin` (#222) --- lua/typescript-tools/protocol/module_mapper.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/typescript-tools/protocol/module_mapper.lua b/lua/typescript-tools/protocol/module_mapper.lua index f96ca82..8b9aedb 100644 --- a/lua/typescript-tools/protocol/module_mapper.lua +++ b/lua/typescript-tools/protocol/module_mapper.lua @@ -11,7 +11,7 @@ local remapped_methods = { [c.CustomMethods.Diagnostic] = "text_document.custom_diagnostic", [c.CustomMethods.BatchCodeActions] = "text_document.code_action.batch", [c.LspMethods.CodeLensResolve] = "text_document.code_lens.resolve", - [c.CustomMethods.ConfigurePlugin] = "text_document.configure_plugin", + [c.CustomMethods.ConfigurePlugin] = "configure_plugin", [c.CustomMethods.JsxClosingTag] = "text_document.jsx_close_tag", [c.CustomMethods.FileReferences] = "text_document.file_references", [c.CustomMethods.SaveTo] = "text_document.save_to",