Skip to content

Commit

Permalink
fix(checkhealth): lldb check hangs if lldb-vscode is installed
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcjkb committed Oct 28, 2023
1 parent 8f7255e commit 5ae04f9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
an error code.
- `:RustLsp rebuildProcMacros` command.

### Fixed
- Health check got stuck if `lldb-vscode` was installed.

## [3.0.4] - 2023-10-25
### Fixed
- Allow `:RustLsp hover range` to accept a range.
Expand Down
6 changes: 3 additions & 3 deletions lua/rustaceanvim/health.lua
Original file line number Diff line number Diff line change
Expand Up @@ -96,16 +96,16 @@ local external_dependencies = {
]],
},
{
name = config.dap.adapter.command,
name = 'lldb',
get_binaries = function()
return { config.dap.adapter.command }
return { 'lldb' }
end,
optional = function()
return true
end,
url = '[lldb](https://lldb.llvm.org/)',
info = [[
A debug adapter (defaultst to: LLDB).
A debug adapter (defaults to: LLDB).
Required for debugging features.
]],
},
Expand Down

0 comments on commit 5ae04f9

Please sign in to comment.