Skip to content

Commit

Permalink
uswd lldb-dab instead of lldb-dap in the default dap configuration (h…
Browse files Browse the repository at this point in the history
…elix-editor#10091)

`LLVM v18.0.0` changed the name here: llvm/llvm-project#69264

Current users of `lldb-vscode` not able to upgrade will have to create a
symlink so that `lldb-dap` links to `lldb-vscode`.

BREAKING CHANGE: debugger looks for `lldb-dap` rather than `lldb-vscode`

closes: helix-editor#9964
  • Loading branch information
RoloEdits authored and postsolar committed Apr 4, 2024
1 parent 48f7f22 commit 984ebba
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions languages.toml
Original file line number Diff line number Diff line change
Expand Up @@ -217,9 +217,9 @@ persistent-diagnostic-sources = ["rustc", "clippy"]
'`' = '`'

[language.debugger]
name = "lldb-vscode"
name = "lldb-dap"
transport = "stdio"
command = "lldb-vscode"
command = "lldb-dap"

[[language.debugger.templates]]
name = "binary"
Expand Down Expand Up @@ -436,9 +436,9 @@ language-servers = [ "clangd" ]
indent = { tab-width = 2, unit = " " }

[language.debugger]
name = "lldb-vscode"
name = "lldb-dap"
transport = "stdio"
command = "lldb-vscode"
command = "lldb-dap"

[[language.debugger.templates]]
name = "binary"
Expand Down Expand Up @@ -473,9 +473,9 @@ language-servers = [ "clangd" ]
indent = { tab-width = 2, unit = " " }

[language.debugger]
name = "lldb-vscode"
name = "lldb-dap"
transport = "stdio"
command = "lldb-vscode"
command = "lldb-dap"

[[language.debugger.templates]]
name = "binary"
Expand Down Expand Up @@ -1263,9 +1263,9 @@ indent = { tab-width = 4, unit = " " }
formatter = { command = "zig" , args = ["fmt", "--stdin"] }

[language.debugger]
name = "lldb-vscode"
name = "lldb-dap"
transport = "stdio"
command = "lldb-vscode"
command = "lldb-dap"

[[language.debugger.templates]]
name = "binary"
Expand Down

0 comments on commit 984ebba

Please sign in to comment.