diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f695e74..f4320c76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/lua/rustaceanvim/health.lua b/lua/rustaceanvim/health.lua index de19e2cf..be5c09ea 100644 --- a/lua/rustaceanvim/health.lua +++ b/lua/rustaceanvim/health.lua @@ -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. ]], },