From 89ef5d9b6d1d2861fe95e5cac011f94e96cab731 Mon Sep 17 00:00:00 2001 From: Penny Chase Date: Sun, 5 Apr 2026 14:37:52 -0400 Subject: [PATCH] Update debugger command to use debug_adapter ElixirLS changed the name of the debug adapter from debugger.[sh|bat] to debug_adapter.[sh|bat], so SublimeDebugger's elixir adapter needs to be updated. --- modules/adapters/elixir.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/adapters/elixir.py b/modules/adapters/elixir.py index 7b45682..e4bd6a9 100644 --- a/modules/adapters/elixir.py +++ b/modules/adapters/elixir.py @@ -14,5 +14,5 @@ class Elixir(dap.Adapter): async def start(self, console: dap.Console, configuration: dap.ConfigurationExpanded): install_path = self.installer.install_path() extension = 'bat' if core.platform.windows else 'sh' - command = [f'{install_path}/elixir-ls-release/debugger.{extension}'] + command = [f'{install_path}/elixir-ls-release/debug_adapter.{extension}'] return dap.StdioTransport(command, stderr=console.error)